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

Releasedates!

Beta 1 - 30th November 2008, 22:00 CET

Today... :O

1:10 hours more :)
 
Where to report buggs?
Whatsoever, I'll go ahead here..
If you're using disp~ spells like ; exura nor any other heal spell, exana pox meanwhile you're walking it's not working.. so if you're running around, getting paralyzed then you can exura and it wont disipear.

Also.. Sometimes when youre loggin out you're getting debugged.
 
Where to report buggs?
Whatsoever, I'll go ahead here..
If you're using disp~ spells like ; exura nor any other heal spell, exana pox meanwhile you're walking it's not working.. so if you're running around, getting paralyzed then you can exura and it wont disipear.

Also.. Sometimes when youre loggin out you're getting debugged.

Report bugs here!
 
@ Godely

function onUse(cid, item, frompos, item2, topos)
local prize = item.uid
local name = getItemNameById(prize)
local count = item.actionid/100

if prize > 0 and prize < 10000 then
queststatus = getPlayerStorageValue(cid,prize)
if queststatus == -1 then
if count > 1 then
doPlayerSendTextMessage(cid,24,'You have found '.. count ..' ' .. name .. 's.')
doPlayerAddItem(cid,prize,count)
setPlayerStorageValue(cid,prize,1)
else
doPlayerSendTextMessage(cid,24,'You have found ' .. name .. '.')
doPlayerAddItem(cid,prize,1)
setPlayerStorageValue(cid,prize,1)
end
else
doPlayerSendTextMessage(cid,24,'The chest is empty.')
end
return 1
else
return 0
end
end

Maybe it helps a little.

@ erp0t

Is it so hard to protocolate 0.3b1 only to 8.4?
 
Back
Top