diff options
author | Reid Yaro <reidyaro@gmail.com> | 2013-08-08 17:36:55 +0100 |
---|---|---|
committer | Reid Yaro <reidyaro@gmail.com> | 2013-08-08 17:36:55 +0100 |
commit | 19bf0cd9b2848cce57bf6f796a5e19bc67fdd004 (patch) | |
tree | 5c41efb198f70abe45f53d857cdf5cc0d8b11af3 /npc/000-1/tarlan.txt | |
parent | 4db83bef44332fa05cfa42fdce9d985584206ce7 (diff) | |
download | serverdata-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/tarlan.txt')
-rw-r--r-- | npc/000-1/tarlan.txt | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/npc/000-1/tarlan.txt b/npc/000-1/tarlan.txt index 3d60504d..be0c2c92 100644 --- a/npc/000-1/tarlan.txt +++ b/npc/000-1/tarlan.txt @@ -9,9 +9,9 @@ mesn; set @a, rand(4); - if (@a == 0) goto l_HardToHit; - if (@a == 1) goto l_Aouch; - if (@a == 2) goto l_DoYou; + if (@a == 0) goto L_HardToHit; + if (@a == 1) goto L_Aouch; + if (@a == 2) goto L_DoYou; mesq l("Hey you!"); next; @@ -19,42 +19,42 @@ next; menu - l("Some food."), l_Food, + l("Some food."), L_Food, l("Nothing, just hanging around."), -; closedialog; npctalk3 l("Ok, see you then!"); - goto l_Quit; + goto L_Quit; -l_Food: +L_Food: mes " "; mesn; mesq l("You can yaye some @@s by hitting these crocotrees.", getitemlink("Croconut")); next; mesq l("Yeye be careful with wild animal's food, some of them are yeyery dangerous, especially the crocs."); - goto l_Quit; + goto L_Quit; -l_HardToHit: +L_HardToHit: mesq l("These crocotrees are full of yaying @@, but they are so hard to hit...", getitemlink("Croconut")); - goto l_Quit; + goto L_Quit; -l_Aouch: +L_Aouch: mesq l("Ayouyouch! My head..."); next; mesq l("Damn @@.", getitemlink("Croconut")); - goto l_Quit; + goto L_Quit; -l_DoYou: +L_DoYou: mesq l("Do you want to try?"); next; mesq l("Just hit the trunk, and it will yeye a @@.", getitemlink("Croconut")); - goto l_Quit; + goto L_Quit; -l_Quit: +L_Quit: setnpcdir 4; close; } |