diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-25 11:14:20 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-25 11:14:20 +0000 |
commit | 61c9ecdec07f41a48e65a238d7f7338bb543c4e7 (patch) | |
tree | e0bbfd0b46cdeab2b1b60f0a093150487d9f6070 /npc/warps/dungeons/payon_dun.txt | |
parent | 4cbc9454fca17c95515554992b2ccc4e5fe71e72 (diff) | |
download | hercules-61c9ecdec07f41a48e65a238d7f7338bb543c4e7.tar.gz hercules-61c9ecdec07f41a48e65a238d7f7338bb543c4e7.tar.bz2 hercules-61c9ecdec07f41a48e65a238d7f7338bb543c4e7.tar.xz hercules-61c9ecdec07f41a48e65a238d7f7338bb543c4e7.zip |
optimized warps scripts
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6748 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/warps/dungeons/payon_dun.txt')
-rw-r--r-- | npc/warps/dungeons/payon_dun.txt | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/npc/warps/dungeons/payon_dun.txt b/npc/warps/dungeons/payon_dun.txt index b337a0aed..1857a3c86 100644 --- a/npc/warps/dungeons/payon_dun.txt +++ b/npc/warps/dungeons/payon_dun.txt @@ -3,13 +3,12 @@ //===== By: ==================================================
//= Nana (1.0)
//===== Current Version: =====================================
-//= 1.1a
+//= 1.2
//===== Compatible With: =====================================
//= Any eAthena Mod
//===== Description: =========================================
//= Payon Dungeon Warps
//===== Additional Comments: =================================
-//= No Comment
//= 1.1a Fixed 'payd04r' warping players to a non-existant tile [MasterOfMuppets]
//============================================================
@@ -23,11 +22,10 @@ pay_dun02.gat,16,63,0 warp payd02-1 2,7,pay_dun01.gat,283,28 pay_dun03.gat,155,161,0 warp payd03-1 2,1,pay_dun02.gat,137,126
pay_dun03.gat,127,62,4 script payd04r 45,2,2,{
set @r,rand(4);
- if(@r==0) goto w1;
if(@r==1) goto w2;
if(@r==2) goto w3;
if(@r==3) goto w4;
- w1: warp "pay_dun04.gat",201,204; end;
+ warp "pay_dun04.gat",201,204; end;
w2: warp "pay_dun04.gat",189,43; end;
w3: warp "pay_dun04.gat",43,40; end;
w4: warp "pay_dun04.gat",34,202; end;
|