summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2010-08-05 11:04:54 -0600
committerJared Adams <jaxad0127@gmail.com>2010-08-05 14:38:22 -0600
commit988ce394c16889c2e49b27f26d941585d523c2c4 (patch)
tree5bb43c3b8b6b64c9146dfcfc7addd3eced812312 /npc
parent3edb7bab3f9f265eb1e35febedde433230078774 (diff)
downloadserverdata-988ce394c16889c2e49b27f26d941585d523c2c4.tar.gz
serverdata-988ce394c16889c2e49b27f26d941585d523c2c4.tar.bz2
serverdata-988ce394c16889c2e49b27f26d941585d523c2c4.tar.xz
serverdata-988ce394c16889c2e49b27f26d941585d523c2c4.zip
Lower ferry prices for lower levels
Diffstat (limited to 'npc')
-rw-r--r--npc/functions/ferry.txt8
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;
}