• 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 Create the item with an unique id

Willbor

One Being
Joined
Jan 19, 2012
Messages
64
Reaction score
1
Location
Brazil
The script is this:
Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
    if itemEx.uid ~= 8087 then
        return true
    end
    doCreateItem(1491, 1, toPosition)
    doRemoveItem(8088)
end

I want when create the itemid 1491 set an uniqueid to him, can someone help me? Thanks
 
Back
Top