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

Use Item on Monster -> Set Storage

Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
    if getCreatureName(itemEx.uid):lower() == "dragon" then
        if getPlayerStorageValue(cid, 1333) < 1 then
            setPlayerStorageValue(cid, 1333, 1)
        else
            doPlayerSendCancel(cid, "tralalala")
        end
    end       
    return true
end
 
Back
Top