Ezzz
Developer of Nostalrius and The Violet Project
Hello,
I've already reported this bug along time ago, and it's that Quest log is isnt working. And i'd need this to my OTs.
I setup like this:
When i start the quest, it looks perfect, everything is fine. On the quest log appears; "The Beginning -> Walking", But when i click "the mission" this case, walking. The description is clean, nothing there.
But if i complete the quest...The description appears...But ofc completed.
If anyone knows how to fix it?. I wont have 0.4 cuz i dont own $ to donate.
So, any help will be appreciated!.
I can compile~
I've already reported this bug along time ago, and it's that Quest log is isnt working. And i'd need this to my OTs.
I setup like this:
LUA:
<quest name="The Beginning" startstorageid="20000" startstoragevalue="1">
<mission name="Walking" storageid="20001" startvalue="1" endvalue="2">
<missionstate id="1" description="Now you have to learn to go throw stairs, just walk threw them to go under or above floors."/>
<missionstate id="2" description="You managed to walk, and go threw stairs. Now it is time to keep going!."/>
</mission>
LUA:
function onStepIn(cid, item, position, fromPosition)
local saveArea = {x = 1024, y = 1025, z = 4}
if(item.actionid == 7001) then
if(getPlayerStorageValue(cid,20000)) == -1 then
setPlayerStorageValue(cid,20000,1)
setPlayerStorageValue(cid,20001,1)
doPlayerSendTextMessage(cid, MESSAGE_EVENT_DEFAULT, "Great, it is time to you to walk, and go threw stairs. Just walk over an slot were you believe you can stand, to go above or under levels.")
doPlayerSendTutorial(cid, 2)
doSendMagicEffect(saveArea, 55)
end
end
return true
end
But if i complete the quest...The description appears...But ofc completed.
If anyone knows how to fix it?. I wont have 0.4 cuz i dont own $ to donate.
So, any help will be appreciated!.
I can compile~