• 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!

Lua hasItemProperty

Sherice

Sky&Wind
Joined
Jan 20, 2012
Messages
183
Reaction score
7
Location
Sweden
Hi every-all, quick question, how do I use this function? (title)
And what properties are there?


Thanks in advance.SHerice
 
If certain item has certain property...

PHP:
CONST_PROP_BLOCKSOLID = 0
CONST_PROP_HASHEIGHT = 1
CONST_PROP_BLOCKPROJECTILE = 2
CONST_PROP_BLOCKPATHFIND = 3
CONST_PROP_ISVERTICAL = 4
CONST_PROP_ISHORIZONTAL = 5
CONST_PROP_MOVEABLE = 6
CONST_PROP_BLOCKINGANDNOTMOVEABLE = 7
CONST_PROP_SUPPORTHANGABLE = 8

Item properties.

EXAMPLE:
PHP:
if hasItemProperty(ITEM_ID, CONST_PROP_MOVEABLE) then 
	print("TRUE, I'M MOVEABLE") 
else 
	print("FALSE, YOU CAN'T MOVE ME") 
end
 
Back
Top