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

Help me out Please

LuckyM

Ett är Ett
Joined
Jun 13, 2009
Messages
1,426
Solutions
1
Reaction score
184
Location
Sweden
Hello OTlander,

I got some problem, my quest didn't Work, how can i fix it , please help me out.



You are not allowed to get rewards from quests.
 
A regular player got that error message? or a gm char? Sometimes GMs are not allowed to take quests :) to avoid GM abuse
 
Last edited:
A regular player got that error message? or a gm char? Sometimes GMs are not allowed to take quests :) to avoid GM abuse

I cant open with gm or normal character ;(

i guess i need to create this
Example :
function onUse(cid, item, frompos, item2, topos)


if item.uid == 5001 then
if getPlayerStorageValue(cid,5001) == -1 then
doPlayerSendTextMessage(cid,25,"You have found a 5 Crystal Coin.")
doPlayerAddItem(cid,2160,5)
setPlayerStorageValue(cid,5001,1)
else
doPlayerSendTextMessage(cid,25,"The is empty.")
end

end
return TRUE
end

<action uniqueid="5001" script="quests/cc.lua" />

I have test with it too ;( but the dosen't work

I Use Evolution never die Project 8.54
 
Tested to make a quest in the easy way? (using action 2000, and a unique id)

btw, I searched everywhere for "You are not allowed to get rewards from quests" and I couldn't find that anywhere, not in the source files either...
 
Last edited:
Tested to make a quest in the easy way? (using action 2000, and a unique id)

btw, I searched everywhere for "You are not allowed to get rewards from quests" and I couldn't find that anywhere, not in the source files either...


Thanks Helga :)
 
Back
Top