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

Help - I need help with some functions.

lokolokio

Well-Known Member
Joined
Jan 7, 2009
Messages
202
Solutions
13
Reaction score
79
Location
Mexico
I want to put Item Description, the functions doSetSpeacialDescription()
doesn't work becuase its a new function like doItemSetAttributes
or something like that and i just want to know what are all these functions.
like ex:

doItemSetAttributes(lols, "aid", aid)
doItemSetAttributes(lols, "special description", description)

I know that is attribute but how many functions this function got, like: aic, description, speacial description, uid, maxhealth, somehting functions like that but i dont know waths the correct way to write them.
 
Last edited:
LUA:
doItemSetAttribute(uid, "aid", 1000) -- for actionid
doItemSetAttribute(uid, "description", "Test") -- for the description

that's an example on how to use it...
 
Back
Top