Teddy
SweStream.se
I have a new item here but it never go away ?
Code:
function onUse(cid, mount, namemount)
local storage = 61337
if getPlayerStorageValue(cid,storage) == -1 then
setPlayerStorageValue(cid,storage, 1)
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR,"Now you can use noob mount!!")
doPlayerAddMount(cid, 4)
else
doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR,"You already have this mount!")
end
return TRUE
end