diff options
author | Wushin <pasekei@gmail.com> | 2015-01-07 21:25:21 -0600 |
---|---|---|
committer | Wushin <pasekei@gmail.com> | 2015-01-07 21:25:21 -0600 |
commit | 2b01da2c4fd2585be9487a8ff50028ac3c175f5e (patch) | |
tree | 11d9ca89896c4ae49b9aca37e4cdf378b69337ac /world/map/npc/functions | |
parent | b734af239e8ff1e7ea746ea327fb84c62be09b7e (diff) | |
parent | 2b5b7afc37871bba004f05c60b6503c48e01d2da (diff) | |
download | serverdata-2b01da2c4fd2585be9487a8ff50028ac3c175f5e.tar.gz serverdata-2b01da2c4fd2585be9487a8ff50028ac3c175f5e.tar.bz2 serverdata-2b01da2c4fd2585be9487a8ff50028ac3c175f5e.tar.xz serverdata-2b01da2c4fd2585be9487a8ff50028ac3c175f5e.zip |
Merge pull request #231 from wushin/attaching-nivalis
Attaching Nivalis to Hurnscald
Diffstat (limited to 'world/map/npc/functions')
-rw-r--r-- | world/map/npc/functions/travelers.txt | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/world/map/npc/functions/travelers.txt b/world/map/npc/functions/travelers.txt index cfbbb9a3..f8ce6bf7 100644 --- a/world/map/npc/functions/travelers.txt +++ b/world/map/npc/functions/travelers.txt @@ -23,7 +23,6 @@ OnInit: set $@nivalis_bit, (1 << 10); //set $@tul_mine_bit, (1 << 11); set $@pachua_bit, (1 << 12); - set $@nivalis_snow_hills_bit, (1 << 13); set $@barbarians_bit, (1 << 14); set $@hurns_farms_bit, (1 << 15); set $@candor_bit, (1 << 16); @@ -38,7 +37,6 @@ OnInit: set $@magic_house_cost, 150; set $@terranite_cave_cost, 200; set $@blue_sage_cost, 200; - set $@nivalis_snow_hills_cost, 150; set $@barbarians_cost, 150; set $@hurns_farms_cost, 150; set $@candor_cost, 200; @@ -109,7 +107,6 @@ L_Start: "Argeas - Terranite Cave (" + (@Cost * $@terranite_cave_cost) + " GP)", L_TravelTerranite, "Kaizei - Barbarian Village (" + (@Cost * $@barbarians_cost) + " GP)", L_TravelBarbarians, "Kaizei - Sage Nikolai's Mansion (" + (@Cost * $@blue_sage_cost) + " GP)", L_TravelBlueSage, - "Kaizei - Snow Hills (" + (@Cost * $@nivalis_snow_hills_cost) + " GP)", L_TravelSnowHills, "Who are the Travelers?", L_TravelTut, "I'm not interested.", L_TravelNo; @@ -194,14 +191,6 @@ L_TravelPachua: set @NextLocationY, 97; goto L_TravelChecks; -L_TravelSnowHills: - set @NextLocationBit, $@nivalis_snow_hills_bit; - set @NextLocationCost, (@Cost * $@nivalis_snow_hills_cost); - set @NextLocationMap$, "044-1.gat"; - set @NextLocationX, 152; - set @NextLocationY, 19; - goto L_TravelChecks; - L_TravelBarbarians: set @NextLocationBit, $@barbarians_bit; set @NextLocationCost, (@Cost * $@barbarians_cost); |