Follow along with the video below to see how to install our site as a web app on your home screen.
Notka: This feature may not be available in some browsers.
function onUse(cid, item, fromPosition, itemEx, toPosition)
local outfitMale = 128
local outfitFemale = 136
local addons = 3
local storage = 12122
if getPlayerStorageValue(cid, storage) == -1 then
doPlayerAddOutfit(cid, outfitMale, addons)
doPlayerAddOutfit(cid, outfitFemale, addons)
doPlayerSendTextMessage(cid, 21, "You get addons!")
doSendMagicEffect(getCreaturePosition(cid), 28)
setPlayerStorageValue(cid, storage, 1)
else
doPlayerSendCancel(cid, "Its empty")
end
return TRUE
end