To slot: Difference between revisions
Jump to navigation
Jump to search
imported>Bale alternate |
imported>Bale mNo edit summary |
||
Line 6: | Line 6: | ||
name={{#var:name}}| | name={{#var:name}}| | ||
function1={{Function| | function1={{Function| | ||
Line 45: | Line 44: | ||
}} | }} | ||
[[Category:Datatype Conversions]] |
Latest revision as of 05:22, 22 May 2010
Function Syntax
- equip is any item where you want to know which slot it is equipped to.
- slot is the name of a slot that you want converted to the slot datatype.
This function will return the slot to which any item would be equipped. Alternatively it will convert the name of a slot to the correct datatype.
Note:
- Non-equipment items return $slot[none].
- Ranged and melee weapons return $slot[weapon], even if you have double fisted skull-smashing.
- All accessories return $slot[acc1].
Code Samples
This code will equip a star sword if the slot it goes in is empty.
if(have_equipped(to_slot($item[star sword]) == $item[none]) {
equip($item[star sword]);
}