Print: Difference between revisions
Jump to navigation
Jump to search
imported>StDoodle mNo edit summary |
imported>StDoodle No edit summary |
||
Line 1: | Line 1: | ||
{{ | |||
#vardefine:name|print}}{{ | |||
#vardefine:return_type|void}}{{ | |||
FunctionPage| | |||
name={{#var:name}}| | |||
function_category=Miscellaneous| | |||
function1={{Function| | |||
name={{#var:name}}| | |||
aggregate={{#var:aggregate}}| | |||
return_type={{#var:return_type}}| | |||
return_also={{#var:return_also}}| | |||
{{ | parameter1={{Param|string|message}}| | ||
}}| | |||
function2={{Function| | |||
name={{#var:name}}| | |||
aggregate={{#var:aggregate}}| | |||
return_type={{#var:return_type}}| | |||
return_also={{#var:return_also}}| | |||
parameter1={{Param|string|message}}| | |||
parameter2={{Param|string|color}}| | |||
p1desc={{Pspan|message}} is the text to print| | |||
p2desc={{Pspan|color}} is an (optional) html color name or code| | |||
}}| | |||
function_description=Print the specified text {{pspan|message}} to the CLI. If the optional {{pspan|color}} parameter is specified and a valid html color code or entity, it will print in that color.| | |||
needscode=yes| | |||
see_also={{SeeAlso|logprint|print_html}}| | |||
cli_equiv=The CLI commands "fprint," "echo" and "fecho" have similar functionality, minus the color option.| | |||
special= Using an invalid color name or code can cause odd colors to be chosen.| | |||
}} | |||
{{RFI|How does color selection work when the specified color name / entity is invalid?|Didn't print() used to echo on the Adventuring status line? Is the absence of such behavior intentional?}} |
Revision as of 20:26, 9 March 2010
needs(code_samples);
Function Syntax
void print(string message ,string color )
- message is the text to print
- color is an (optional) html color name or code
Print the specified text message to the CLI. If the optional color parameter is specified and a valid html color code or entity, it will print in that color.
CLI Equivalent
The CLI commands "fprint," "echo" and "fecho" have similar functionality, minus the color option.
See Also
Special
Using an invalid color name or code can cause odd colors to be chosen.
Attention KoLmafia Experts!
We need your help; some details of this function's operation are unknown or unclear.
The following specific questions have been raised:
- How does color selection work when the specified color name / entity is invalid?
- Didn't print() used to echo on the Adventuring status line? Is the absence of such behavior intentional?