summaryrefslogtreecommitdiff
path: root/npc/000-1/ale.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/000-1/ale.txt')
-rw-r--r--npc/000-1/ale.txt40
1 files changed, 20 insertions, 20 deletions
diff --git a/npc/000-1/ale.txt b/npc/000-1/ale.txt
index 2a2189b3..20948cfe 100644
--- a/npc/000-1/ale.txt
+++ b/npc/000-1/ale.txt
@@ -7,10 +7,10 @@
000-1.gat,55,23,0,1 script Ale 105;2,{
set @g, getq(ShipQuests_Gugli);
- if (@g == 0) goto l_NoTask;
+ if (@g == 0) goto L_NoTask;
set @q, getq(ShipQuests_Ale);
- if (@q == 1) goto l_CallFunc;
+ if (@q == 1) goto L_CallFunc;
mesn;
mesq l("Ouch...");
@@ -20,8 +20,8 @@
menu
lg("Gugli sent me down here to help you."), -,
- l("What's that?"), l_Plushroom,
- l("See you aboard."), l_Quit;
+ l("What's that?"), L_Plushroom,
+ l("See you aboard."), L_Quit;
mes "";
mesn;
@@ -41,13 +41,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_Ale) == 1 && (getq(ShipQuests_Astapolos) == 0 || getq(ShipQuests_Gulukan) == 0 || getq(ShipQuests_Jalad) == 0 || getq(ShipQuests_QMuller) == 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;
@@ -55,21 +55,21 @@ l_CallFunc:
next;
menu
- rif(getq(ShipQuests_Astapolos) == 0, l("Astapolos.")), l_Bottom,
- rif(getq(ShipQuests_Gulukan) == 0, l("Gulukan.")), l_Bottom,
- rif(getq(ShipQuests_Jalad) == 0, l("Jalad.")), l_Jalad,
- rif(getq(ShipQuests_QMuller) == 0, l("Q'Muller.")), l_Bottom,
- rif(getq(ShipQuests_Tibbo) == 0, l("Tibbo.")), l_Bottom,
- l("Nobody."), l_Quit;
-
-l_Bottom:
+ rif(getq(ShipQuests_Astapolos) == 0, l("Astapolos.")), L_Bottom,
+ rif(getq(ShipQuests_Gulukan) == 0, l("Gulukan.")), L_Bottom,
+ rif(getq(ShipQuests_Jalad) == 0, l("Jalad.")), L_Jalad,
+ rif(getq(ShipQuests_QMuller) == 0, l("Q'Muller.")), 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 on the bottom of the island, ask Jalad for more information.");
close;
-l_Jalad:
+L_Jalad:
setcamnpc "Jalad";
next;
@@ -81,7 +81,7 @@ l_Jalad:
close;
-l_Plushroom:
+L_Plushroom:
mes "";
mesn;
mesq l("'That', as you call it, is a @@. There're plenty on this island!", getitemlink("Plushroom"));
@@ -92,21 +92,21 @@ l_Plushroom:
close;
-l_NoTask:
+L_NoTask:
mes "";
mesn;
mesq l("Ouch... These boxes are so heavy!");
close;
-l_TaskDone:
+L_TaskDone:
mes "";
mesn;
mesq l("That's good to hear!");
close;
-l_Quit:
+L_Quit:
closedialog;
close;
}