Have equipped: Difference between revisions
Jump to navigation
Jump to search
imported>Slyz dd code sample |
imported>Slyz No edit summary |
||
Line 24: | Line 24: | ||
<syntaxhighlight> | <syntaxhighlight> | ||
if ( !have_equipped($item[pirate fledges]) ) | if ( !have_equipped($item[pirate fledges]) ) | ||
equip( $slot[acc1], $item[pirate | equip( $slot[acc1], $item[pirate fledges] ); | ||
</syntaxhighlight>}}| | </syntaxhighlight>}}| | ||
Revision as of 14:59, 31 March 2010
needs(code_samples);
Function Syntax
boolean have_equipped(item check )
- check is the item to test for
Returns true if you currently have the specified item check equipped, false if you do not. For familiar equipment, it only checks the familiar you currently have with you. Always returns false if check is not an item that can be equipped.
Code Sample
This example will check if you have the Pirate fledges equipped, and equip it if not.
if ( !have_equipped($item[pirate fledges]) )
equip( $slot[acc1], $item[pirate fledges] );
CLI Equivalent
The CLI commands "equip" and others function similarly, if the parameter "list" or no parameters are given.
See Also