diff options
author | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-16 17:14:57 +0000 |
---|---|---|
committer | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-16 17:14:57 +0000 |
commit | 0840c847bd1e4d60e2a2af5d19859dbc21a12a24 (patch) | |
tree | 1dd607b5712cdae77cd13a9eebf7d6f683400313 | |
parent | 3531bd5992af838ba43f886a4c9c01745bb6062a (diff) | |
download | hercules-0840c847bd1e4d60e2a2af5d19859dbc21a12a24.tar.gz hercules-0840c847bd1e4d60e2a2af5d19859dbc21a12a24.tar.bz2 hercules-0840c847bd1e4d60e2a2af5d19859dbc21a12a24.tar.xz hercules-0840c847bd1e4d60e2a2af5d19859dbc21a12a24.zip |
Fixed aldeg_cas04 random warp
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6119 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | npc/Changelog.txt | 1 | ||||
-rw-r--r-- | npc/warps/guild/guildcastles.txt | 10 |
2 files changed, 7 insertions, 4 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index eedc6c746..c10c570bb 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -28,6 +28,7 @@ Nexon Date Added
======
04/16
+ * Fixed aldeg_cas04 random warp [Playtester]
* Fixed merchants/grandpa_pharmacist.txt thanks to KarLaeda [Playtester]
* Removed Cube room warps from the quest script [Lupus]
04/15
diff --git a/npc/warps/guild/guildcastles.txt b/npc/warps/guild/guildcastles.txt index c72a1a9ea..7b18e81a6 100644 --- a/npc/warps/guild/guildcastles.txt +++ b/npc/warps/guild/guildcastles.txt @@ -94,14 +94,16 @@ aldeg_cas04.gat,121,168,0 warp aldg406-1 1,1,aldeg_cas04.gat,25,123 aldeg_cas04.gat,132,209,0 warp aldg407 1,1,aldeg_cas04.gat,14,196
aldeg_cas04.gat,17,196,0 warp aldg407-1 1,1,aldeg_cas04.gat,132,228
aldeg_cas04.gat,132,231,4 script aldg408r 45,1,1,{
- set @l0,rand(4);
+ set @l0,rand(5);
if(@l0==1) goto w2;
if(@l0==2) goto w3;
if(@l0==3) goto w4;
- warp "aldeg_cas04.gat",170,100; end;
-w2: warp "aldeg_cas04.gat",186,88; end;
+ if(@l0==4) goto w5;
+ warp "aldeg_cas04.gat",152,210; end;
+w2: warp "aldeg_cas04.gat",111,210; end;
w3: warp "aldeg_cas04.gat",129,212; end;
-w4: warp "aldeg_cas04.gat",132,209; end;
+w4: warp "aldeg_cas04.gat",129,212; end;
+w5: warp "aldeg_cas04.gat",14,192; end;
}
aldeg_cas05.gat,194,71,0 warp aldg501 1,1,aldeg_cas05.gat,129,194
aldeg_cas05.gat,125,194,0 warp aldg501-1 1,1,aldeg_cas05.gat,199,70
|