diff options
author | kenpachi2k11 <kenpachi2k11@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-09 18:48:50 +0000 |
---|---|---|
committer | kenpachi2k11 <kenpachi2k11@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-09 18:48:50 +0000 |
commit | 4261936c19888f098827b63d5c3c094f818d98b1 (patch) | |
tree | 61f05014b6cdd3009b04ed79ad7af967a6f035d3 /npc/mobs/dungeons/lhz_dun.txt | |
parent | b0c8c19ef8af59b8dff9d61398fa8bbb8b2f9c52 (diff) | |
download | hercules-4261936c19888f098827b63d5c3c094f818d98b1.tar.gz hercules-4261936c19888f098827b63d5c3c094f818d98b1.tar.bz2 hercules-4261936c19888f098827b63d5c3c094f818d98b1.tar.xz hercules-4261936c19888f098827b63d5c3c094f818d98b1.zip |
Moved a few merchants and mob spawns to separate files to prevent error message when running server in pre-RE mode and with TXT databases. (bugreport:5846)
Fixed Tao Gunka Cards (#4302) renewal effect. (bugreport:5866)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16247 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/mobs/dungeons/lhz_dun.txt')
-rw-r--r-- | npc/mobs/dungeons/lhz_dun.txt | 58 |
1 files changed, 1 insertions, 57 deletions
diff --git a/npc/mobs/dungeons/lhz_dun.txt b/npc/mobs/dungeons/lhz_dun.txt index 54495a614..d42c7a19d 100644 --- a/npc/mobs/dungeons/lhz_dun.txt +++ b/npc/mobs/dungeons/lhz_dun.txt @@ -22,6 +22,7 @@ //= 1.7a Added dummy event to keep from causnig warnings. [L0ne_W0lf] //= 1.8 Corrected MVP spawn variance (Labs2 MVP). [L0ne_W0lf] //= 1.9 Added Bio4 spawns. [Chilly] +//= 1.9a Moved Bio4 spawns to separate file. [Kenpachi] //============================================================ //================================================== @@ -104,60 +105,3 @@ OnMyMVPDead: OnMy99Dead: end; } - -//======================================================================================== -// lhz_dun04 - Bio-life Labs 4F -//======================================================================================== -lhz_dun04,0,0,0,0 monster Randel 2221,50,5000,0,0 -lhz_dun04,0,0,0,0 monster Flamel 2222,50,5000,0,0 -lhz_dun04,0,0,0,0 monster Celia 2223,50,5000,0,0 -lhz_dun04,0,0,0,0 monster Chen 2224,50,5000,0,0 -lhz_dun04,0,0,0,0 monster Gertie 2225,50,5000,0,0 -lhz_dun04,0,0,0,0 monster Alphoccio 2226,50,5000,0,0 -lhz_dun04,0,0,0,0 monster Trentini 2227,50,5000,0,0 -lhz_dun04,0,0,0,0 monster Paladin Randel 2228,1,2700000,2400000,1 -lhz_dun04,0,0,0,0 monster Creator Flamel 2229,1,3000000,2700000,1 -lhz_dun04,0,0,0,0 monster Professor Celia 2230,1,2580000,2340000,1 -lhz_dun04,0,0,0,0 monster Champion Chen 2231,1,2700000,2500000,1 -lhz_dun04,0,0,0,0 monster Stalker Gertie 2232,1,3300000,3000000,1 -lhz_dun04,0,0,0,0 monster Clown Alphoccio 2233,1,2580000,2460000,1 -lhz_dun04,0,0,0,0 monster Gypsy Trentini 2234,1,2580000,2460000,1 - -lhz_dun04,0,0,0 script mvp_lhz_dun04 -1,{ -OnTimer6000000: // delay1 = 6000000 ms (100 min) - stopnpctimer; - sleep rand(0,30)*60000; // 0 to 30 minutes -OnInit: - // Select Coordinates to summon a random MVP on - switch(rand(1,7)) { - case 1: set .@x,77; set .@y,251; break; - case 2: set .@x,147; set .@y,224; break; - case 3: set .@x,219; set .@y,219; break; - case 4: set .@x,244; set .@y,120; break; - case 5: set .@x,149; set .@y,41; break; - case 6: set .@x,53; set .@y,109; break; - case 7: set .@x,149; set .@y,151; break; - } - set .@mob,rand(2235,2241); - monster "lhz_dun04",.@x,.@y,strmobinfo(1,.@mob),.@mob,1,strnpcinfo(3)+"::OnMyMVPDead"; - - // Select Coordinates to summon a random 99 on - switch(rand(1,7)) { - case 1: set .@x2,77; set .@y2,251; break; - case 2: set .@x2,147; set .@y2,224; break; - case 3: set .@x2,219; set .@y2,219; break; - case 4: set .@x2,244; set .@y2,120; break; - case 5: set .@x2,149; set .@y2,41; break; - case 6: set .@x2,53; set .@y2,109; break; - case 7: set .@x2,149; set .@y2,151; break; - } - set .@mob2,rand(2228,2234); - monster "lhz_dun04",.@x2,.@y2,strmobinfo(1,.@mob2),.@mob2,1,strnpcinfo(3)+"::OnMy99Dead"; - end; - -OnMyMVPDead: - killmonster "lhz_dun04",strnpcinfo(3)+"::OnMy99Dead"; - initnpctimer; -OnMy99Dead: - end; -} |