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

In need of support

Snakie

New Member
Joined
Apr 15, 2010
Messages
263
Reaction score
4
In need of help, my cheest's are bugged usaly when u click on em you get the item but ín my server when i click on the chest it just opens like a bp can anyone help me with this?

Best Regards.
 
In map editor put your chest action ID 2000 and unique ID 1-????? (numbers for example 666666)
Then add item into it and there you got your quest chest :thumbup:
Btw. Don't try to open it with GOD/CM/GM
 
Lua:
local item = 2160 --Item id of a reward
local count = 10 --How many?
local stroage = 1158
function onUse(cid, item, frompos, item2, topos)
			 if item.uid == 1158 then
queststatus = getPlayerStorageValue(cid,stroage)
if queststatus == -1 then
doPlayerSendTextMessage(cid,22,"You have found a purple tome.") 
doPlayerAddItem(cid,item,count)
setPlayerStorageValue(cid,stroage,1)
else
doPlayerSendTextMessage(cid,22,"It is empty.")
end
end
return TRUE
end
Should work.
 
Do you use your admin character when u test the quest?...
If so.. then try with a normal account / character
This is quite common with newbies :p

EDIT: NVM... didn't saw sonical post!
 
Back
Top