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

Vial of milk as reward

tarantonio

Old School Player
Joined
Jun 21, 2009
Messages
868
Solutions
1
Reaction score
281
I'm working on the temple quest on Rookgaard, but i don't know how to add a vial of milk as reward.

This is my script:

Code:
function onUse(cid, item, frompos, item2, topos)

local config = {
        storage = 50015, -- change to your own storage value
}

        if getPlayerStorageValue(cid, config.storage) == -1 then
                setPlayerStorageValue(cid, config.storage, 1)
                doPlayerSendTextMessage(cid,MESSAGE_EVENT_ADVANCE,"You have found a bag.")
                local bag = doPlayerAddItem(cid, 1987, 1)
                doAddContainerItem(bag, 2563, 1)
                doAddContainerItem(bag, 2111, 4)
                doAddContainerItem(bag, 2006, 1)
               
        else
                doPlayerSendTextMessage(cid,MESSAGE_EVENT_ADVANCE,"The chest is empty.")
                end
        return TRUE
end
 
Back
Top