- script Sample -1,{
function Invasion;
OnInit:
setarray .Maps$[0],"alberta","aldebaran","amatsu","ayothaya","comodo","einbroch","geffen","gonryun","hugel","jawaii","lighthalzen","louyang","morocc","moscovia","niflheim","payon","rachel","veins","umbala","xmas","yuno";
end;
OnWhisperGlobal:
if( getgmlevel() < 90 ) end;
OnMinute00:
OnMinute30:
if( .Invasion ) end;
set .Invasion,1;
set .SelectedMap$,.Maps$[ rand( getarraysize(.Maps$) ) ];
switch( rand(4) ){
default: end;
// MAX : ~64 Different Monster in each Cases( 1 BOSS + 63 Normal )
// Case <X>: Invasion( <BOSS>,<Amount>,<MOBID>,<AMOUNT>,....,<MOBID>,<AMOUNT> ); break;
Case 0: Invasion( 1511,1,1002,10 ); break;
Case 1: Invasion( 1511,1,1002,10,1002,15 ); break;
Case 2: Invasion( 1511,1,1002,5,1002,25,1002,17 ); break;
Case 3: Invasion( 1511,1,1002,5,1002,25,1002,10,1002,30 ); break;
}
initnpctimer;
end;
OnTimer3600000:
set .Invasion,0;
announce "Time's Up !! Invasion End.",0;
killmonster .SelectedMap$,"All";
end;
function Invasion {
monster .SelectedMap$,0,0,"INVASION BOSS",getarg(0),getarg(1),strnpcinfo(0)+"::OnBossKilled";
for( set .@i,2; getarg( .@i,0 ); set .@i,.@i + 2 )
monster .SelectedMap$,0,0,"INVASION MOB",getarg(.@i),getarg(.@i+1),strnpcinfo(0)+"::OnMobKilled";
announce "Invasion STARTED at "+.SelectedMap$+" .. Hurry Up !!.",0;
}
OnBossKilled:
// getitem 512,100;
if( mobcount( .SelectedMap$,strnpcinfo(0)+"::OnBossKilled" ) ){
mapannounce .SelectedMap$,"MAIN BOSS - Remain : "+mobcount( .SelectedMap$,strnpcinfo(0)+"::OnBossKilled" ),0;
}else{
killmonster .SelectedMap$,"All";
mapannounce .SelectedMap$,"ALL Boss has been Killed, Treasure BOX has been Summoned",0;
monster .SelectedMap$,0,0,"TREASURE BOX",1333,10,strnpcinfo(0)+"::OnBoxKilled";
}
end;
OnMobKilled:
// getitem 512,1;
if( mobcount( .SelectedMap$,strnpcinfo(0)+"::OnMobKilled" ) ){
mapannounce .SelectedMap$,"Monsters Remain : "+mobcount( .SelectedMap$,strnpcinfo(0)+"::OnMobKilled" ),0;
}
end;
OnBoxKilled:
// getitem 607,1;
if( mobcount( .SelectedMap$,strnpcinfo(0)+"::OnBoxKilled" ) ){
mapannounce .SelectedMap$,"Treasure Box Remain : "+mobcount( .SelectedMap$,strnpcinfo(0)+"::OnBoxKilled" ),0;
}else{
announce "Invasion Event end Successfully.",0;
stopnpctimer;
set .Invasion,0;
}
end;
}
=========is this ready to load?? ready to put on my npc and to be loaded? ready to use i mean?