summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/Changelog.txt1
-rw-r--r--npc/mobs/fields/veins.txt4
-rw-r--r--npc/warps/fields/veins_fild.txt19
3 files changed, 19 insertions, 5 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt
index 746beef57..bed0735ba 100644
--- a/npc/Changelog.txt
+++ b/npc/Changelog.txt
@@ -1,6 +1,7 @@
Date Added
======
2007/05/06
+ * Small Veins field spawn and warp adjustments [Playtester]
* Revised 1/3 of the cities scripts. Thanks to CAHTEXNIK [Lupus]
2007/05/05
* Updated Crusader Job quest to the official one [Samuray22]
diff --git a/npc/mobs/fields/veins.txt b/npc/mobs/fields/veins.txt
index 3fe4ddf43..44bb7e40d 100644
--- a/npc/mobs/fields/veins.txt
+++ b/npc/mobs/fields/veins.txt
@@ -29,7 +29,7 @@ ve_fild01,0,0,0,0 monster Atros 1785,1,86400000,86000000,1
ve_fild02,0,0,0,0 monster Savage 1166,60,0,0,0
ve_fild02,0,0,0,0 monster Side Winder 1037,20,0,0,0
ve_fild02,0,0,0,0 monster Roween 1782,20,0,0,0
-ve_fild02,0,0,0,0 monster Stapo 1784,10,0,0,0
+ve_fild02,0,0,0,0 monster Stapo 1784,20,0,0,0
ve_fild02,0,0,0,0 monster Yellow Plant 1081,10,180000,90000,1
ve_fild02,0,0,0,0 monster Atros 1785,1,86400000,86000000,1
@@ -54,7 +54,7 @@ ve_fild05,0,0,0,0 monster Sleeper 1386,40,0,0,0
ve_fild05,0,0,0,0 monster Sandman 1165,20,0,0,0
ve_fild05,0,0,0,0 monster Roween 1782,20,0,0,0
ve_fild05,0,0,0,0 monster Drosera 1781,10,0,0,0
-ve_fild05,0,0,0,0 monster Galion 1783,10,0,0,0
+ve_fild05,0,0,0,0 monster Galion 1783,5,0,0,0
ve_fild05,0,0,0,0 monster White Plant 1082,5,180000,90000,1
ve_fild05,0,0,0,0 monster Shining Plant 1083,1,1800000,900000,1
diff --git a/npc/warps/fields/veins_fild.txt b/npc/warps/fields/veins_fild.txt
index 36df6fbdf..b1e3fd196 100644
--- a/npc/warps/fields/veins_fild.txt
+++ b/npc/warps/fields/veins_fild.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= $ephiroth
//===== Current Version: =====================================
-//= 1.2
+//= 1.3
//===== Compatible With: =====================================
//= Any Athena Version
//===== Description: =========================================
@@ -12,6 +12,7 @@
//= 1.0 Initial version [$ephiroth]
//= 1.1 Updated more warps [$ephiroth]
//= 1.2 Removed some unofficial warps [Playtester]
+//= 1.3 Added random Veins exit [Playtester]
//============================================================
//= Veins Field (ve_fild) ====================================
@@ -33,5 +34,17 @@ ve_fild03,355,222,0 warp veinswarp5015 1,1,ve_fild04,46,249
ve_fild04,43,249,0 warp veinswarp5016 1,1,ve_fild03,353,221
ve_fild03,222,42,0 warp veinswarp5017 1,1,ve_fild05,204,330
ve_fild05,206,331,0 warp veinswarp5018 1,1,ve_fild03,222,45
-ve_fild05,359,192,0 warp veinswarp5019 1,1,ve_fild06,78,183
-ve_fild06,88,176,0 warp veinswarp5020 1,1,ve_fild05,354,192
+
+ve_fild05,359,192,0 warp veinswarp5019 1,1,ve_fild06,84,179
+ve_fild04,115,49,0 warp veinswarp5020 1,1,ve_fild06,84,179
+
+ve_fild06,88,176,0 script veinswarp5021 45,1,1,{
+ switch(rand(2)){
+ case 1:
+ warp "ve_fild04",115,52;
+ break;
+ default:
+ warp "ve_fild05",354,192;
+ break;
+ }
+}