This is embarrassing, but I cant seem to make this event work. trust me on this, I searched this forum for answers back to back, and yes they all worked.......with my other events. Except for this one though, i tried OnMinute,OnClock,etc all seem to fail. Why? What am I doing wrong?
and yes, I added this onto my scripts_custom.conf
just in case you're wondering.
- script Sample -1,{
function Invasion;
OnInit:
setarray
.Maps$[0],"alberta","aldebaran","amatsu","ayothaya","comodo","einbroch","geffen","gonryun","hugel","jawaii","lighthalzen","louya
ng","morocc","moscovia","niflheim","payon","rachel","veins","umbala","xmas","yuno";
end;
OnWhisperGlobal:
if( getgmlevel() < 90 ) end;
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( 1870,1,1898,30,1898,20,1898,10,1898,5 ); break;
}
initnpctimer;
end;
OnTimer3600000:
set .Invasion,0;
announce "Time's Up !! Invasion End.",0;
killmonster .SelectedMap$,"All";
end;
OnMinute25:
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 "Zombie Simulator 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,30,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 "Zombie Simulator end Successfully.",0;
stopnpctimer;
set .Invasion,0;
}
end;
}