Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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!
function onUse(cid, item, frompos, item2, topos)
if item.itemid == 1740 then
queststatus = getPlayerStorageValue(cid, 3305)
if queststatus == -1 then
setPlayerStorageValue(cid, 3305, 1)
mountFunction(cid,math.random(32))
else
doPlayerSendTextMessage(cid, 22, "it is empty.")
end
end
return 1
end
local storage = 3305
function onUse(cid, item, fromPosition, itemEx, toPosition)
local player = Player(cid)
if player:getStorageValue(storage) == -1 then
player:setStorageValue(storage, 1)
player:addMount(math.random(32))
else
player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "It is empty.")
end
return true
end