To slot

From Kolmafia
Revision as of 14:49, 12 March 2010 by imported>Grotfang (Create page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Function Syntax

slot to_slot(item equip )

  • equip is any item where you want to know which slot it is equipped to.

This function will return the slot that any item is equipped to.

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]);
}