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:
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