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

setspecialdescription error

Coca Cola

New Member
Joined
Apr 10, 2010
Messages
164
Reaction score
0
how can i fix ?
obs : can't change to doitemsetattribute(uid, "description", param) because i need this to be a specialdescription


and i need dosetitemspecialdescription(uid, desc) functions in lib pls

ty,cya


Code:
function onSay(cid, words, param, channel)
 if(desc == "") then
 doPlayerSendCancel(cid, "You have to type a special description.")
 return true 
end 
local pos = getCreatureLookPosition(cid)
 pos.stackpos = STACKPOS_TOP_MOVEABLE_ITEM_OR_CREATURE 
local item = getThingFromPos(pos).uid
if(item) then doSetItemSpecialDescription(item, desc) 
end 
return true
end
 
Last edited:
Back
Top