Help with the quest

Mu online season 21 - grand opening

CoveX

Dedicated Member
Dedicated Member
Apr 3, 2011
16
0
27
Spain
Hi people, I make a quest with the sequence of bosses, and I don't know if the script is right, if it isn't help me where i wrong please.
Quest NPC:
[@main]
#IF
CHECKNAMELIST BossComplete1.txt
#SAY
Thanks for your help <$USERNAME>.\\
<Exit/@exit>
#ACT
BREAK
#IF
CHECKNAMELIST BossComplete.txt
#SAY
Thanks you for you help <$USERNAME>. Please take this reward. \ \
<Exit/@exit>
#ACT
GIVE Prize 1
ADDNAMELIST BossComplete1.txt
BREAK
#IF
CHECKNAMELIST BossStart.txt
#SAY
You have killed WoomaTaurus, ZumaTaurus and KingBoard. Please come back \
when you have killed all threes. \ \
<Exit/@exit>
#ACT
BREAK
#ELSESAY
Hi would you like to take the quest? \ \
<Yes/@accept> || <No/@exit>
[@accept]
#ACT
Var Integer Boss KillCount
SaveVar Boss KillCount Integral.txt
ADDNAMELIST BossStart.txt
SET [200] 1
#SAY
Sweet. Come back when you've killed three's bosses. \ \
<Exit/@exit>
---------
Boss quest:
[@main]
#IF
CheckVar WoomaTaurus Kill
CheckVar ZumaTarus Kill
CheckVar KingBoard Kill
#ACT
BREAK
#IF
CheckVar Boss KillCount
#ACT
GOTO @finish
BREAK
#ACT
CalcVar Boss KillCount
SaveVar Boos KillCount Integral.txt
BREAK
#ELSEACT
BREAK
[@finish]
#ACT
SET [200] 0
CalcVar Boss KillCount
SaveVar Boss KillCount Integral.txt
ADDNAMELIST BossComplete.txt
#SAY
You haven't killed all boss to finish the quest. Return to the NPC for you \
prize. \ \
<Exit/@exit>
Help me please ppl I wont to learn more and can do it better.
 

CoveX

Dedicated Member
Dedicated Member
Apr 3, 2011
16
0
27
Spain
I was looking but i din't find, help me please, i wont do a quest to kill 3 bosses but I don know how it doing:S
 
Last edited:
Upvote 0

CoveX

Dedicated Member
Dedicated Member
Apr 3, 2011
16
0
27
Spain
Please someone help me with the quest, give some reference to can do the quest please, because it difficult to me and I want to learn, i'm was searching but I don't found any post to that can help me, and I resource to you.
 
Upvote 0

CoveX

Dedicated Member
Dedicated Member
Apr 3, 2011
16
0
27
Spain
Boss sequence

People please help me with the quest script, because I looked all the forum of MIR3 and I don't found something that can help me, I only need the script to do quest of the sequence of boss, NPC tell me to kill 3 bosses.

Please someone give some ideas:#
 
Upvote 0

Tai

HEAD CAPTAIN
Staff member
Administrator
May 11, 2003
14,769
3
3,342
495
United Kingdom
Can you explain exactly what you want to do...?

All I gathered is that you want to make a quest where you have to kill 3 bosses...what else? Or is that it
 
Upvote 0

CoveX

Dedicated Member
Dedicated Member
Apr 3, 2011
16
0
27
Spain
Is that it, I only wand to make a quest where I have to kill 3 bosses and nothing else, people help me please.
 
Upvote 0

twisterdmk

Golden Oldie
Golden Oldie
May 13, 2009
759
28
115
USA
[@test]
#SAY
Hello <$username>. Can you help me with a task please?\\
<Yes/@accept>\
<No/@exit>\ \


[@accept]
#SAY
You must bring me back certain items.\\
{FCOLOR/10}WoomaTaurus{FColor/12}--- {FCOLOR/1}WoomaBrain{FCOLOR/5}\
{FCOLOR/10}BoarKing{FCOLOR/12}--- {FCOLOR/1}BoarBrain{FCOLOR/5}\
{FCOLOR/10}ZumaTaurus{FCOLOR/12}--- {FCOLOR/1}ZumaBrain{FCOLOR/5}\

{FCOLOR/6}For each of these I will reward you a prize.\ \
Return when you have obtained these.\ \ \ \ \ \

{Fcolor/5}You must have the item in your bag.{FCLOLOR/10}\
<[I have these]/@haveitems>\

[@haveitems]
#SAY
<WoomaBrain/@quest1>\
<BoarBrain/@quest2>\
<ZumaBrain/@quest3>\

[@quest1]
#IF
Checknamelist WoomaTauruskill.txt
#ACT
goto @Exit
break
#IF
CHECKITEM WoomaTaurusBrain 1
#SAY
I see you have the items I require.\\
<GetReward/@reward1>\
#ELSESAY
Sorry you don't have the item.\

[@reward1]
#ACT
Take WoomaTaurusBrain 1
Addnamelist WoomaTauruskill.txt
Give TestSword 1
#say
Thank you for bringing me the {FCOLOR/10} WoomaBrain.\


[@quest2]
#IF
Checknamelist BoarKingkill.txt
#ACT
goto @Exit
break
#IF
CHECKITEM BoarKingBrain 1
#SAY
I see you have the items I require.\\
<GetReward/@reward2>\
#ELSESAY
Sorry you don't have the item.\

[@reward2]
#ACT
Take BoarKingBrain 1
Addnamelist BoarKingkill.txt
Give TestSword 1
#say
Thank you for bringing me the {FCOLOR/10} BoarBrain.\


[@quest3]
#IF
Checknamelist ZumaTauruskill.txt
#ACT
goto @Exit
break
#IF
CHECKITEM ZumaTaurusBrain 1
#SAY
I see you have the items I require.\\
<GetReward/@reward3>\
#ELSESAY
Sorry you don't have the item.\

[@reward1]
#ACT
Take ZumaTaurusBrain 1
Addnamelist ZumaTauruskill.txt
Give TestSword 1
#say
Thank you for bringing me the {FCOLOR/10} ZumaBrain.\

[@exit]
#say
sorry you have already done this one.

I spent time to re-write this for you some. If you have questions or can't figure out how it works, just leave a reply.
 
Upvote 0