Can drink: Difference between revisions
Jump to navigation
Jump to search
imported>Grotfang m moved Can drink() to Can drink |
imported>Grotfang No edit summary |
||
Line 1: | Line 1: | ||
{{#vardefine:name|can_drink}} | |||
{{#vardefine:return_type|boolean}} | |||
{{FunctionPage| | |||
name={{#var:name}}| | |||
function_category=Your Character| | |||
function1={{Function| | |||
name={{#var:name}}| | |||
aggregate={{#var:aggregate}}| | |||
return_type={{#var:return_type}}| | |||
return_also={{#var:return_also}} | |||
}}| | |||
When not logged in, this function returns | function_description=This function returns true if the logged-in character is not subject to the dietary restrictions of a Teetotaler or Oxygenarian path. If the character is subject to those restrictions this function returns false.| | ||
code1={{CodeSample| | |||
title=Code Samples| | |||
description=If the character is able to drink, this code will make them drink 3 bottles of gin.| | |||
code= | |||
<syntaxhighlight> | |||
if(can_drink()) { | |||
drink(3 , $item[bottle of gin]); | |||
} | |||
</syntaxhighlight> | |||
}}| | |||
see_also={{SeeAlso|can_eat|drink}}| | |||
special=When not logged in, this function returns true. | |||
}} |
Revision as of 14:14, 1 March 2010
Function Syntax
boolean can_drink()
This function returns true if the logged-in character is not subject to the dietary restrictions of a Teetotaler or Oxygenarian path. If the character is subject to those restrictions this function returns false.
Code Samples
If the character is able to drink, this code will make them drink 3 bottles of gin.
if(can_drink()) {
drink(3 , $item[bottle of gin]);
}
See Also
Special
When not logged in, this function returns true.