• 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 Atribute Item

jplaubs

New Member
Joined
Nov 11, 2011
Messages
7
Reaction score
2
I'm trying to create an item that adds attributes to my armor or any other item that poses receiving attributes.

Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
 doItemSetAttribute(itemEx.uid, 'fist', +5)
 return TRUE
 end
 
Back
Top