NPC1: (the part im having problems with anyway)
That works, but when I go to my next npc:
I've tried doing the quest 3 different times and it always gets stuck here...instead of going to @givemap it's saying:
"I'm busy, leave me alone"
it all seems fine to me :/ any ideas why it's going wrong?
Code:
[@gozt]
#ACT
SET [670] 1
SET [669] 0
#SAY
Off you go then.\
<Close/@exit>
That works, but when I go to my next npc:
Code:
[@main]
#IF
CHECK [670] 1
#ACT
GOTO @givemap
#ELSEACT
GOTO @main0
[@main0]
#IF
CHECK [672] 1
CHECK [671] 1
#ACT
GOTO @givenmap
#ELSEACT
GOTO @main1
[@main1]
#IF
CHECK [672] 0
CHECK [673] 1
#ACT
GOTO @gotstone
#ELSESAY
I'm busy, leave me alone.\\
<Close/@exit>
[@givemap]
#IF
CHECKITEM MysticMap
#ACT
TAKE MysticMap
SET [671] 1
SET [670] 0
#SAY
bla bla\
<Continue/@givenmap>\
#ELSESAY
you dont have ze item.\
<Close/@exit>
I've tried doing the quest 3 different times and it always gets stuck here...instead of going to @givemap it's saying:
"I'm busy, leave me alone"
it all seems fine to me :/ any ideas why it's going wrong?
Last edited:
