diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-01 10:51:30 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-01 10:51:30 -0300 |
commit | be94766ca2fbfabd4f081ef27a45e2001964afaf (patch) | |
tree | 611130bfa41876e56ba691ea811a3ddc09efc8c3 /npc | |
parent | 4b74ddcf327bd68b8b18b09bc51867e6f6444608 (diff) | |
download | serverdata-be94766ca2fbfabd4f081ef27a45e2001964afaf.tar.gz serverdata-be94766ca2fbfabd4f081ef27a45e2001964afaf.tar.bz2 serverdata-be94766ca2fbfabd4f081ef27a45e2001964afaf.tar.xz serverdata-be94766ca2fbfabd4f081ef27a45e2001964afaf.zip |
This should fix Pylon
Diffstat (limited to 'npc')
-rw-r--r-- | npc/007-1/pylon.txt | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/npc/007-1/pylon.txt b/npc/007-1/pylon.txt index 529b27559..94c986b3f 100644 --- a/npc/007-1/pylon.txt +++ b/npc/007-1/pylon.txt @@ -19,6 +19,8 @@ mesq l("If you have some gems, I can transform them into powder."); next; mesq l("I only take a tax of 100 gp per gem."); + if (Zeny < 100) + close; next; mesq lg("Then, would you like me to transform one of your gems?"); next; @@ -45,8 +47,7 @@ L_Menu: goto L_Question; break; case 8: - goto - L_Ore + goto L_Ore; break; case 9: close; @@ -55,9 +56,10 @@ L_Menu: goto L_Powder; break; } -L_MenuOre; + +L_MenuOre: menu - l("Yeah sure!"), L_OreOk; + l("Yeah sure!"), L_OreOk, l("Nah Thanks you."), L_Close; L_Question: @@ -72,17 +74,17 @@ L_Question: next; goto L_Menu; -L_Ore +L_Ore: mesn; - mesq lg("Hum... I'm not really good at it."); + mesq l("Hum... I'm not really good at it."); next; - mesq l("But i can try my best for you!"); + mesq l("But I can try my best for you!"); next; - mesq l("You want it!"); + mesq l("If you want it!"); next; goto L_MenuOre; - -L_OreOk: + +L_OreOk: // Amount iron ore .@amo=rand(1,2); @@ -97,7 +99,7 @@ L_OreOk: next; L_Close; close; - + // Must rework IDs L_Powder: |