summaryrefslogtreecommitdiff
path: root/npc/000-1/tibbo.txt
diff options
context:
space:
mode:
authorReid Yaro <reidyaro@gmail.com>2013-08-08 17:36:55 +0100
committerReid Yaro <reidyaro@gmail.com>2013-08-08 17:36:55 +0100
commit19bf0cd9b2848cce57bf6f796a5e19bc67fdd004 (patch)
tree5c41efb198f70abe45f53d857cdf5cc0d8b11af3 /npc/000-1/tibbo.txt
parent4db83bef44332fa05cfa42fdce9d985584206ce7 (diff)
downloadserverdata-19bf0cd9b2848cce57bf6f796a5e19bc67fdd004.tar.gz
serverdata-19bf0cd9b2848cce57bf6f796a5e19bc67fdd004.tar.bz2
serverdata-19bf0cd9b2848cce57bf6f796a5e19bc67fdd004.tar.xz
serverdata-19bf0cd9b2848cce57bf6f796a5e19bc67fdd004.zip
Change every label names from l_ to L_ .
Diffstat (limited to 'npc/000-1/tibbo.txt')
-rw-r--r--npc/000-1/tibbo.txt34
1 files changed, 17 insertions, 17 deletions
diff --git a/npc/000-1/tibbo.txt b/npc/000-1/tibbo.txt
index 5c268fe6..e1c972f3 100644
--- a/npc/000-1/tibbo.txt
+++ b/npc/000-1/tibbo.txt
@@ -8,10 +8,10 @@
000-1.gat,34,111,0,1 script Tibbo 110;2,{
set @g, getq(ShipQuests_Gugli);
- if (@g == 0) goto l_NoTask;
+ if (@g == 0) goto L_NoTask;
set @q, getq(ShipQuests_Tibbo);
- if (@q == 1) goto l_CallFunc;
+ if (@q == 1) goto L_CallFunc;
mesn;
mesq l("Uh? Hi! I'm sorry, but I have no time for chatting.");
@@ -48,15 +48,15 @@
mesn;
mesq l("Thank you and be careful with that box. I have worked really hard to fill it!");
- goto l_Close;
+ goto L_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_Tibbo) == 1 && (getq(ShipQuests_Ale) == 0 || getq(ShipQuests_Astapolos) == 0 || getq(ShipQuests_Gulukan) == 0 || getq(ShipQuests_Jalad) == 0 || getq(ShipQuests_QMuller) == 0), l("I'm still busy, I need to find the other sailors.")), -,
- l("What's that food?"), l_Aquada;
+ l("What's that food?"), L_Aquada;
mes "";
mesn;
@@ -64,16 +64,16 @@ 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_Gulukan) == 0, l("Gulukan.")), l_Top,
- rif(getq(ShipQuests_Jalad) == 0, l("Jalad.")), l_Top,
- rif(getq(ShipQuests_QMuller) == 0, l("Q'Muller.")), l_Top,
+ rif(getq(ShipQuests_Ale) == 0, l("Ale.")), L_Top,
+ rif(getq(ShipQuests_Astapolos) == 0, l("Astapolos.")), L_Top,
+ rif(getq(ShipQuests_Gulukan) == 0, l("Gulukan.")), L_Top,
+ rif(getq(ShipQuests_Jalad) == 0, l("Jalad.")), L_Top,
+ rif(getq(ShipQuests_QMuller) == 0, l("Q'Muller.")), L_Top,
l("Nobody."), -;
- goto l_Close;
+ goto L_Close;
-l_Top:
+L_Top:
mes "";
mesn;
mesq l("I've seen him at the top of the island.");
@@ -82,7 +82,7 @@ l_Top:
close;
-l_Aquada:
+L_Aquada:
mes "";
mesn;
mesq l("This is an @@, a light blue sea fruit. They're highly desired in the archipelago.", getitemlink("Aquada"));
@@ -93,20 +93,20 @@ l_Aquada:
close;
-l_NoTask:
+L_NoTask:
mes "";
mesn;
mesq l("I'm sorry but I have no time to chat with you.");
close;
-l_TaskDone:
+L_TaskDone:
mes "";
mesn;
mesq l("Awesome!");
close;
-l_Close:
+L_Close:
callfunc "GoodBye";
}