diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/ferry.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/npc/functions/ferry.txt b/npc/functions/ferry.txt index d0fcd04f..b9c0e320 100644 --- a/npc/functions/ferry.txt +++ b/npc/functions/ferry.txt @@ -1,8 +1,11 @@ // The ferry system function script Ferry { + if (BaseLevel < 20) goto L_LowerCost; set @cost_tulimshar, 1000; set @cost_hurnscald, 1000; + +L_Start: set @cost_candor, 3000; mes "Where would you like to go?"; next; @@ -62,4 +65,9 @@ L_AlreadyThere: L_NotEnoughGP: mes "You don't have enough money to go there!"; close; + +L_LowerCost: + set @cost_tulimshar, 500; + set @cost_hurnscald, 500; + goto L_Start; } |