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

doItemSetAttribute dont Works

malkavianz

New Member
Joined
Sep 11, 2008
Messages
61
Reaction score
1
Code:
local chave = doCreateItemEx(castle.moveid, 1)

doItemSetAttribute(chave, "aid", 19757)
		
doTileAddItemEx(castle.wall1[i], chave)

Create item, but actionid dont work.
TFS 0.4 dev
 
Not sure, but try this:
Lua:
doItemSetAttribute(doCreateItem(castle.moveid, 1, castle.wall1[i]), 'aid', 19757)
 
Back
Top