diff options
author | nmaligec <wouldnot@hotmail.com> | 2011-01-05 00:34:26 -0500 |
---|---|---|
committer | nmaligec <wouldnot@hotmail.com> | 2011-01-05 00:34:26 -0500 |
commit | ed8cac19500c515cae40c1fd4b2d87abd96ae3ba (patch) | |
tree | 3136c4b4bac4db3a432384390efcc22f88ff2790 /npc/functions/ferry.txt | |
parent | 21156bed9c3d6eb3cf66a1e1557f4fc8c87a4194 (diff) | |
parent | 1e1e26e1255a487a14ca99c60c3ab51ad3988f9b (diff) | |
download | serverdata-ed8cac19500c515cae40c1fd4b2d87abd96ae3ba.tar.gz serverdata-ed8cac19500c515cae40c1fd4b2d87abd96ae3ba.tar.bz2 serverdata-ed8cac19500c515cae40c1fd4b2d87abd96ae3ba.tar.xz serverdata-ed8cac19500c515cae40c1fd4b2d87abd96ae3ba.zip |
merging updates from previous test repo ta-testing.
Diffstat (limited to 'npc/functions/ferry.txt')
-rw-r--r-- | npc/functions/ferry.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/functions/ferry.txt b/npc/functions/ferry.txt index b9c0e320..95a176ec 100644 --- a/npc/functions/ferry.txt +++ b/npc/functions/ferry.txt @@ -2,11 +2,11 @@ function script Ferry { if (BaseLevel < 20) goto L_LowerCost; - set @cost_tulimshar, 1000; - set @cost_hurnscald, 1000; + set @cost_tulimshar, 500; + set @cost_hurnscald, 500; L_Start: - set @cost_candor, 3000; + set @cost_candor, 1500; mes "Where would you like to go?"; next; if (BaseLevel < 40) goto L_PlainMenu; @@ -67,7 +67,7 @@ L_NotEnoughGP: close; L_LowerCost: - set @cost_tulimshar, 500; - set @cost_hurnscald, 500; + set @cost_tulimshar, 250; + set @cost_hurnscald, 250; goto L_Start; } |