• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Slot Item

Yony

New Member
Joined
Sep 7, 2007
Messages
318
Reaction score
0
Location
Israel
Hello all, ive got stucked in my script dunno how to check the slottype of item
(it doesnt have to be weared and i need to check which slot it fits)

thx in advance
 
Code:
getItemInfo(itemid).wieldPosition
Code:
CONST_SLOT_FIRST = 1
CONST_SLOT_HEAD = CONST_SLOT_FIRST
CONST_SLOT_NECKLACE = 2
CONST_SLOT_BACKPACK = 3
CONST_SLOT_ARMOR = 4
CONST_SLOT_RIGHT = 5
CONST_SLOT_LEFT = 6
CONST_SLOT_LEGS = 7
CONST_SLOT_FEET = 8
CONST_SLOT_RING = 9
CONST_SLOT_AMMO = 10
CONST_SLOT_LAST = CONST_SLOT_AMMO
:)
 
Back
Top