Jump to content
  • 0

Question

6 answers to this question

Recommended Posts

Posted (edited)

If you're using Pre-re some Renewal Monster like in lhz_dun04 are disabled from mob_db.txt so there are no monster respawn in lhz_dun04 .But if you're using re or Renewal Mechanics all monsters spawn are available including malaya port and malangdo .i remember there are monster in eclage too :(:)

Edited by Lelouch
Posted (edited)

Just add this to your scripts_monsters.conf file and they'll load even in pre-renewal.

npc: npc/mobs/dungeons/dew_dun.txt
npc: npc/mobs/dungeons/dic_dun.txt
npc: npc/mobs/dungeons/ma_dun.txt
npc: npc/mobs/dungeons/mal_dun.txt
npc: npc/mobs/fields/bifrost.txt
npc: npc/mobs/fields/dewata.txt
npc: npc/mobs/fields/dicastes.txt
npc: npc/mobs/fields/malaya.txt
npc: npc/mobs/fields/splendide.txt

As for lhz_dun04 the spawns should be inside npc/mobs/dungeons/lhz_dun.txt...if not here's the script:

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;
}

and...like Lelouch mentioned, the mobs are probably disabled if you didnt uncheck them so run this script in sql:

REPLACE INTO `mob_db` VALUES (2221,"RANDEL","Randel","Randel",141,478745,0,32367,24055,1,3055,4277,180,56,142,69,86,49,132,55,10,12,1,7,66,0x3095,170,76,384,288,0,0,0,0,0,0,0,7345,3000,6470,300,6471,300,985,100,617,10,1435,1,2162,1,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2222,"FLAMEL","Flamel","Flamel",141,316468,0,31166,21445,1,1074,1503,93,40,138,79,62,53,82,48,10,12,1,7,63,0x3095,180,76,384,288,0,0,0,0,0,0,0,7345,3000,6470,300,6471,300,984,100,617,10,16010,10,15044,1,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2223,"CELIA","Celia","Celia",141,253145,0,22107,19017,1,1612,2256,74,312,108,78,55,144,139,49,10,12,1,7,68,0x3295,150,1152,384,288,0,0,0,0,0,0,0,7345,3000,6470,300,6471,300,985,100,1654,10,2853,10,18111,1,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2224,"CHEN","Chen","Chen",141,218721,2000,25684,19810,1,2501,3501,125,56,126,74,71,123,99,65,10,12,1,6,81,0x3295,180,1152,384,288,0,0,0,0,0,0,0,7347,2000,6470,300,6471,300,984,100,617,10,1814,10,1659,1,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2225,"GERTIE","Gertie","Gertie",141,266926,0,24267,20233,1,3684,5157,108,10,145,87,59,67,127,76,10,12,1,6,85,0x3195,180,76,384,288,0,0,0,0,0,0,0,7347,2000,6470,300,6471,300,985,100,617,10,13061,10,18109,1,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2226,"ALPHOCCIO","Alphoccio","Alphoccio",142,256202,0,22192,20322,1,1273,1782,84,15,121,126,67,80,165,42,10,12,1,7,64,0x3095,180,76,384,288,0,0,0,0,0,0,0,7347,2000,6470,300,6471,300,984,100,617,10,1930,10,2161,1,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2227,"TRENTINI","Trentini","Trentini",142,204962,0,15995,13248,1,1070,1498,70,12,121,126,67,80,165,42,10,12,1,7,64,0x3095,180,76,384,288,0,0,0,0,0,0,0,7347,2000,6470,300,6471,300,985,100,1984,10,2465,10,2892,1,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2228,"G_RANDEL","Paladin Randel","Paladin Randel",160,3870000,0,18000,10000,1,3055,4277,667,151,303,165,181,110,178,66,10,12,1,7,86,0x37B5,100,76,384,288,0,0,0,0,0,0,0,6224,100,617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2229,"G_FLAMEL","Creator Flamel","Creator Flamel",160,2230000,0,18000,10000,1,1074,1503,253,133,275,148,156,72,177,60,10,12,1,7,83,0x37B5,100,76,384,288,0,0,0,0,0,0,0,6223,100,617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2230,"G_CELIA","Professor Celia","Professor Celia",160,1847804,0,18000,10000,1,1612,2256,201,543,165,190,142,236,199,93,10,12,1,7,88,0x37B5,150,1152,384,288,0,0,0,0,0,0,0,6224,100,617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2231,"G_CHEN","Champion Chen","Champion Chen",160,2249350,5000,18000,10000,1,2501,3501,216,134,172,150,164,203,155,88,10,12,1,6,81,0x37B5,125,1152,384,288,0,0,0,0,0,0,0,6223,100,617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2232,"G_GERTIE","Stalker Gertie","Stalker Gertie",160,2057279,0,18000,10000,1,3684,5157,251,107,211,181,114,83,225,60,10,12,1,6,85,0x37B5,100,76,384,288,0,0,0,0,0,0,0,6224,100,617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2233,"G_ALPHOCCIO","Clown Alphoccio","Clown Alphoccio",160,1894278,0,18000,10000,1,1273,1782,201,109,176,258,155,132,309,95,10,12,1,7,84,0x37B5,100,76,384,288,0,0,0,0,0,0,0,6223,100,617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2234,"G_TRENTINI","Gypsy Trentini","Gypsy Trentini",160,1894278,0,18000,10000,1,1070,1498,181,112,176,258,155,132,309,95,10,12,1,7,84,0x37B5,100,76,384,288,0,0,0,0,0,0,0,6224,100,617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2235,"B_RANDEL","Paladin Randel","Paladin Randel",160,6870000,0,4621500,2664000,1,3055,4277,667,151,303,165,181,110,178,66,10,12,1,7,86,0x37B5,100,76,384,288,2310750,617,5500,603,2250,732,450,12623,9000,12616,9000,616,9000,6224,9000,13062,5000,2160,5000,1490,5000,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2236,"B_FLAMEL","Creator Flamel","Creator Flamel",160,4230000,0,5223570,2630354,1,1074,1503,253,133,275,148,156,72,177,60,10,12,1,7,83,0x37B5,100,76,384,288,2611785,617,5500,603,2250,732,450,12623,9000,12616,9000,616,9000,6223,9000,1387,5000,1392,5000,1393,5000,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2237,"B_CELIA","Professor Celia","Professor Celia",160,3847804,0,5027308,2509792,1,1612,2256,201,543,165,190,142,236,199,93,10,12,1,7,88,0x37B5,150,1152,384,288,2513654,617,5500,603,2250,732,450,12623,9000,12616,9000,616,9000,6224,9000,2854,5000,1584,5000,2582,5000,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2238,"B_CHEN","Champion Chen","Champion Chen",160,4249350,5000,5113568,2934974,1,2501,3501,216,134,172,150,164,203,155,88,10,12,1,6,81,0x37B5,125,1152,384,288,2556784,617,5500,603,2250,732,450,12623,9000,12616,9000,616,9000,6223,9000,1285,5000,1813,5000,16017,5000,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2239,"B_GERTIE","Stalker Gertie","Stalker Gertie",160,4057279,0,4420698,2691274,1,3684,5157,251,107,211,181,114,83,225,60,10,12,1,6,85,0x37B5,100,76,384,288,2210349,617,5500,603,2250,732,450,12623,9000,12616,9000,616,9000,6224,9000,13069,5000,13070,5000,1291,5000,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2240,"B_ALPHOCCIO","Clown Alphoccio","Clown Alphoccio",160,3894278,0,4226036,2468972,1,1273,1782,201,109,176,258,155,132,309,95,10,12,1,7,84,0x37B5,100,76,384,288,2113018,617,5500,603,2250,732,450,12623,9000,12616,9000,616,9000,6223,9000,18103,5000,1290,5000,1913,5000,0,0,0,0,0,0);
REPLACE INTO `mob_db` VALUES (2241,"B_TRENTINI","Gypsy Trentini","Gypsy Trentini",160,3894278,0,4463758,2563096,1,1070,1498,181,112,176,258,155,132,309,95,10,12,1,7,84,0x37B5,100,76,384,288,2231879,0,0,0,0,0,0,12623,9000,12616,9000,616,9000,6224,9000,18103,5000,18110,5000,1963,5000,0,0,0,0,0,0);

Should do it.

Edited by F0xxy

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...