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

Tutorial item ids

muffmo

Learning Lua/Mapper
Joined
Jan 26, 2009
Messages
82
Reaction score
0
Location
sweden
Hello, someone know the item id of "tutorial arrow" and "tutorial box" ? :p
 
Hello, someone know the item id of "tutorial arrow" and "tutorial box" ? :p

It's not an item. It's an illusion, so let's put it in movements.
Lua:
  function onStepIn(cid, item, position, fromPosition)
        doSendMagicEffect(position, CONST_ME_TUTORIALARROW)
        return TRUE
end
 
Back
Top