diff options
author | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-21 10:05:50 +0000 |
---|---|---|
committer | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-21 10:05:50 +0000 |
commit | b96a2d663a51218fe6a75c30f2462340b8d9b76a (patch) | |
tree | 342e7dbe8637991f9c7b9c34a0baecf1488a5195 /npc/quests | |
parent | 5556698f023d3a2698456985a50bab78021bccb6 (diff) | |
download | hercules-b96a2d663a51218fe6a75c30f2462340b8d9b76a.tar.gz hercules-b96a2d663a51218fe6a75c30f2462340b8d9b76a.tar.bz2 hercules-b96a2d663a51218fe6a75c30f2462340b8d9b76a.tar.xz hercules-b96a2d663a51218fe6a75c30f2462340b8d9b76a.zip |
* Fixed a typo in guides_einbr.txt
* Added the Cube Room Maze
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7794 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests')
-rw-r--r-- | npc/quests/quests_lighthalzen.txt | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/npc/quests/quests_lighthalzen.txt b/npc/quests/quests_lighthalzen.txt index e41bc62e3..b84bff4f0 100644 --- a/npc/quests/quests_lighthalzen.txt +++ b/npc/quests/quests_lighthalzen.txt @@ -552,8 +552,11 @@ L9_1: mes "This is going to be hard~";
mes "Let's go!!!";
close2;
- warp "lhz_cube.gat",248,184;
set piciburn,piciburn+1;
+ set @rdm,rand(3);
+ if(@rdm==1)goto L_warp1;
+ if(@rdm==2)goto L_warp2;
+ warp "lhz_cube.gat",67,193;
end;
L_10:
@@ -575,8 +578,17 @@ L10_1: mes "I will send you there again..";
mes "Good luck!";
close2;
-// warp "lhz_cube.gat",66,136;
- warp "lhz_cube.gat",248,184;
+ set @rdm,rand(3);
+ if(@rdm==1)goto L_warp1;
+ if(@rdm==2)goto L_warp2;
+ warp "lhz_cube.gat",67,193;
+ end;
+
+L_warp1:
+ warp "lhz_cube.gat",66,136;
+ end;
+L_warp2:
+ warp "lhz_cube.gat",66,74;
end;
L_11:
|