Really could do with the answer to this problem :(

Mu online season 21 - grand opening

Xx69xX

Golden Oldie
Golden Oldie
Dec 2, 2005
2,152
159
250
I have been working on this quest all day now and iv got down to my final problem and dont even know if it is solveable =/

i use the npc and get a Flag [280] 1 For example

i want the flag to dissapere once i log out

Eg: [280] 0

i have this in QManage but when i log in and out i can still use the flag=/

[@login]
#IF
CHECK [280] 1
#ACT
SET [280] 0

This is under alot of other scripts with [@login] but dont think that should make a differnece

any 1 know how or what i can do to fix this or do it in a different way?

thanks
 

akacary2

LOMCN Veteran
Veteran
Loyal Member
Dec 11, 2008
274
1
44
Hartlepool
I only have 1 [@login] at the top and my scripts underneath. I leave 1 blank line under the end of a script and the beginning of a new 1 and they work fine for me m8
 
Upvote 0

Xx69xX

Golden Oldie
Golden Oldie
Dec 2, 2005
2,152
159
250
I only have 1 [@login] at the top and my scripts underneath. I leave 1 blank line under the end of a script and the beginning of a new 1 and they work fine for me m8

Thats fair enough m8 but have u got a turn on and off flag going on?
i really want to know if any 1 else has 1 of these working atleast then i know i can sort it lol :P

at work atm so cnt try to take away the [@login] but even then i dont think it would make much difference

any 1 else got any ideas?
 
Upvote 0

Weikster

LOMCN Veteran
Veteran
Jan 21, 2009
421
11
44
36th chamber
yes, they all must be under ONE [@login] else it will not work. And the other things you have after the [@login], make sure none have break at the end until the very last one.
 
Upvote 0

Xx69xX

Golden Oldie
Golden Oldie
Dec 2, 2005
2,152
159
250
thank you both..i was told by another friend it dosent matter ¬.¬ now i feel stupid.o well i apreciate it very much guys!
 
Upvote 0

paul.obrien

LOMCN Veteran
Veteran
Aug 28, 2008
453
4
45
I have been working on this quest all day now and iv got down to my final problem and dont even know if it is solveable =/

i use the npc and get a Flag [280] 1 For example

i want the flag to dissapere once i log out

Eg: [280] 0

i have this in QManage but when i log in and out i can still use the flag=/

[@login]
#IF
CHECK [280] 1
#ACT
SET [280] 0

This is under alot of other scripts with [@login] but dont think that should make a differnece

any 1 know how or what i can do to fix this or do it in a different way?

thanks

[@login]
#IF
CHECK [280] 1
#ACT
SET [280] 0
goto @next

[@next]
blah blah


you must put every thing under the same [@login]
just add a goto @
after each script so it can continue down the list.

for example

[@Login]
#IF
#ACT
Var Integer Global ItemCount 0
Var Integer Human scarecrow
Var Integer Human Hen
Var Integer Human deer1
LoadVar Global ItemCount ../QuestDiary/Variables/Integral.txt
LoadVar Human scarecrow ../QuestDiary/Variables/Integral.txt
LoadVar Human Hen ../QuestDiary/Variables/Integral.txt
LoadVar Human deer1 ../QuestDiary/Variables/Integral.txt
goto @fuh

[@fuh]
#IF
CHECKACCOUNTLIST ../Market_def/subgamegold.txt
#SAY
Thanks <$USERNAME> for staying Subscribed.\
You have payed your Subscription for this month and your\
GameGold is ready to collect.\
You have <1000 GameGold> waiting for you in the Subscripton\
Palace.\
Would you like to collect your GameGold now?.\ \

Yes please <teleport me/@tele> to the Subscription Palace\
<Exit/@exit>

#ACT
messagebox "Your Subscription GameGold is ready to collect."
goto @admin

#ELSEACT
goto @admin

[@tele]
#ACT
MAPMOVE HCS16 20 25
BREAK

[@admin]
#IF
CHECK [98] 1
#ACT
goto @admin2

i no this looks a bit complicated.just ignore what it says just look at the structure
 
Upvote 0