//===== rAthena Script =======================================
//= Lighthalzen Dungeon(Biolabs) Monster Spawn Script
//===== By: ==================================================
//= The Prometheus Project, rAthena Dev Team
//===== Current Version: =====================================
//= 1.8
//===== Compatible With: =====================================
//= rAthena Project
//===== Additional Comments: =================================
//= 08/24/05 : Added 1st version. [Muad_Dib]
//= 1.1 Some corrections to level 1, 2 as pointed out by
//= MasterofMuppets. [Skotlex]
//= 1.3 Some fixes based on kRO's "RO Map" [Poki#3]
//= I also made the place more Moby ^^
//= 1.4 Adjusted spawns according to own info from iRO [MasterOfMuppets]
//= 1.5 More accurate spawn numbers and iRO names thanks to Tharis [Playtester]
//= 1.6 Official X.3 spawns [Playtester]
//= 1.7 Corrected MVP spawn function to be standard to iRO. [L0ne_W0lf]
//= - A random 99 will now be spawned when the MVP spawns.
//= - Spare spawn and MVP spawn now spawn in official locations.
//= - Expandeded timer to allow for varying spawn times.
//= 1.7a Added dummy event to keep from causnig warnings. [L0ne_W0lf]
//= 1.8 Corrected MVP spawn variance (Labs2 MVP). [L0ne_W0lf]
//============================================================
OnSummon:
// Select Coordinates to summon a random MVP on
switch(rand(1,6)) {
case 1: set .@x,140; set .@y,232; break;
case 2: set .@x,75; set .@y,138; break;
case 3: set .@x,140; set .@y,87; break;
case 4: set .@x,205; set .@y,140; break;
case 5: set .@x,123; set .@y,137; break;
case 6: set .@x,175; set .@y,137; break;
}
set .@mob,rand(1646,1651);
monster "lhz_dun03",.@x,.@y,strmobinfo(1,.@mob),.@mob,1,"summon_boss_lt::OnLhzMvPDead";
// Select Coordinates to summon a random 99 on
switch(rand(1,6)) {
case 1: set .@x2,183; set .@y2,97; break;
case 2: set .@x2,97; set .@y2,96; break;
case 3: set .@x2,47; set .@y2,139; break;
case 4: set .@x2,231; set .@y2,140; break;
case 5: set .@x2,139; set .@y2,211; break;
case 6: set .@x2,139; set .@y2,259; break;
}
set .@mob2,rand(1640,1645);
monster "lhz_dun03",.@x2,.@y2,strmobinfo(1,.@mob2),.@mob2,1,"summon_boss_lt::OnMy99Dead";
end;
Question
Sallycantdance
Hello as the title says i have a question regarding lhz 3 mvp mob spawn they are not spawning. i dont know whats the error i already check the
/db/pre-re/mob.db.txt and npc/pre-re/mob/dungeons/lhz_dun.txt im using pre renewal
pre-re/mob.db.txt
while my npc/pre-re/mob/dungeons/lhz_dun.txt
can someone help me thank you
Edited by GM WinterLink to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.