Writeln: Difference between revisions
Jump to navigation
Jump to search
imported>Icon315 Code Sample |
imported>Heeheehee Formatting. Cleaned up output -- there were lots of unnecessary tags. Go brevity! |
||
Line 21: | Line 21: | ||
description=If you have 5 or more hobo nickels, it will write "bowl of fishysoisse '''(5)'''" at the top of the page| | description=If you have 5 or more hobo nickels, it will write "bowl of fishysoisse '''(5)'''" at the top of the page| | ||
code=<syntaxhighlight> | code=<syntaxhighlight> | ||
if (available_amount($item[hobo nickel]) >= 5 ) | |||
writeln("<center>bowl of fishysoisse <b>(5)</b></center>"); | |||
if ( ( | |||
</syntaxhighlight>}}| | </syntaxhighlight>}}| | ||
see_also={{SeeAlso|write}}| | see_also={{SeeAlso|write}}| | ||
}} | }} |
Revision as of 02:10, 12 April 2010
Function Syntax
- text is the text to print
Prints the specified text to the source of the page to be displayed by a relay browser script, ending with a line break (in the source, not necessarily in how the text is displayed).
Code Sample
If you have 5 or more hobo nickels, it will write "bowl of fishysoisse (5)" at the top of the page
if (available_amount($item[hobo nickel]) >= 5 )
writeln("<center>bowl of fishysoisse <b>(5)</b></center>");
See Also