Script Help plaz

Mu online season 21 - grand opening

^G0trex

Golden Oldie
Golden Oldie
Nov 7, 2003
1,946
28
135
Bham
NPC1: (the part im having problems with anyway)

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:

Muffin

Golden Oldie
Golden Oldie
Mar 14, 2005
878
0
153
United Kingdom
[@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 <--------- Change to @givemap
#ELSESAY
I'm busy, leave me alone.\\
<Close/@exit>
 
Upvote 0

akacary2

LOMCN Veteran
Veteran
Loyal Member
Dec 11, 2008
274
1
44
Hartlepool
well from what i can c its the flags... read through ur full script and c wot flags are getting set to w/e and check them against the flags needed to goto @givemap c if they are working that way...
Also make sure no other quests are using same flags as i dnt know wot this does lol
 
Upvote 0