Can drink: Difference between revisions
Jump to navigation
Jump to search
imported>StDoodle mNo edit summary |
imported>Bale mNo edit summary |
||
Line 5: | Line 5: | ||
FunctionPage| | FunctionPage| | ||
name={{#var:name}}| | name={{#var:name}}| | ||
function1={{Function| | function1={{Function| | ||
Line 30: | Line 29: | ||
special=When not logged in, this function returns true. | special=When not logged in, this function returns true. | ||
}} | }} | ||
[[Category:Your Character]] |
Revision as of 21:38, 21 May 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.