diff options
Diffstat (limited to 'npc/000-1/muller.txt')
-rw-r--r-- | npc/000-1/muller.txt | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/npc/000-1/muller.txt b/npc/000-1/muller.txt index bb3c76e1..09cbac77 100644 --- a/npc/000-1/muller.txt +++ b/npc/000-1/muller.txt @@ -8,10 +8,10 @@ 000-1.gat,35,69,0,1 script Q'Muller 104;2,{ set @g, getq(ShipQuests_Gugli); - if (@g == 0) goto l_NoTask; + if (@g == 0) goto L_NoTask; set @q, getq(ShipQuests_QMuller); - if (@q == 1) goto l_CallFunc; + if (@q == 1) goto L_CallFunc; mesn; mesq l("Can't you see I'm working?!"); @@ -26,7 +26,7 @@ next; menu - l("Indeed! Goodbye."), l_Quit, + l("Indeed! Goodbye."), L_Quit, l("Yes, it is true! You are not able at all. Nard has been waiting for the food for too long already. Hurry up, you lazy sailors!"), -; mes ""; @@ -53,13 +53,13 @@ close; -l_CallFunc: +L_CallFunc: callfunc "SailorFood"; menu - rif(getq(ShipQuests_Gugli) > 1, l("Task is done.")), l_TaskDone, + rif(getq(ShipQuests_Gugli) > 1, l("Task is done.")), L_TaskDone, rif(getq(ShipQuests_QMuller) == 1 && (getq(ShipQuests_Ale) == 0 || getq(ShipQuests_Astapolos) == 0 || getq(ShipQuests_Gulukan) == 0 || getq(ShipQuests_Jalad) == 0 || getq(ShipQuests_Tibbo) == 0), l("I'm still busy, I need to find the other sailors.")), -, - l("What's that?"), l_Plushroom; + l("What's that?"), L_Plushroom; mes ""; mesn; @@ -67,21 +67,21 @@ l_CallFunc: next; menu - rif(getq(ShipQuests_Ale) == 0, l("Ale.")), l_Top, - rif(getq(ShipQuests_Astapolos) == 0, l("Astapolos.")), l_Top, - rif(getq(ShipQuests_Jalad) == 0, l("Jalad.")), l_Top, - rif(getq(ShipQuests_Gulukan) == 0, l("Gulukan.")), l_Bottom, - rif(getq(ShipQuests_Tibbo) == 0, l("Tibbo.")), l_Bottom, - l("Nobody."), l_Quit; - -l_Bottom: + rif(getq(ShipQuests_Ale) == 0, l("Ale.")), L_Top, + rif(getq(ShipQuests_Astapolos) == 0, l("Astapolos.")), L_Top, + rif(getq(ShipQuests_Jalad) == 0, l("Jalad.")), L_Top, + rif(getq(ShipQuests_Gulukan) == 0, l("Gulukan.")), L_Bottom, + rif(getq(ShipQuests_Tibbo) == 0, l("Tibbo.")), L_Bottom, + l("Nobody."), L_Quit; + +L_Bottom: mes ""; mesn; mesq l("I've seen him at the bottom of the island, check around."); close; -l_Top: +L_Top: mes ""; mesn; mesq l("I've seen him at the top of the island."); @@ -90,7 +90,7 @@ l_Top: close; -l_Plushroom: +L_Plushroom: mes ""; mesn; mesq l("'That', as you call it, is a @@. There're plenty on this island!", getitemlink("Plushroom")); @@ -101,14 +101,14 @@ l_Plushroom: close; -l_NoTask: +L_NoTask: mes ""; mesn; mesq l("You see? I'm working here!"); close; -l_TaskDone: +L_TaskDone: mes ""; mesn; mesq l("Good to hear!"); @@ -116,7 +116,7 @@ l_TaskDone: callfunc "GoodBye"; -l_Quit: +L_Quit: closedialog; close; } |