Hi, Thanks for your reply!
if(gettime(3) % 2 == 1 && !agitcheck() && !agitcheck2()) {
In this line the event will not work when WoE is active right?
//Prize to give Mobs
setarray .Prize2[0],7227,607,608,501,502,503,504,505,506,507,508,509,510,511,512;
setarray .PAmt2[0],1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
And in this line the prize is random?
- script TownInvasion -1,{
OnMinute60:
if(gettime(3) % 2 == 1 && !agitcheck() && !agitcheck2()) {
for(.@i = 0; .@i < 4; .@i++) { //Spawn on 4 towns
.Town_Invade$ = .Town$[rand(getarraysize(.Town$))];
announce .Town_Invade$+" Guard: Help us! Our town is being invaded!",bc_blue|bc_all;
for(.@iy = 0; .@iy < 100; .@iy++) { //Mob spawner
monster .Town_Invade$,0,0,"--ja--",-1,1,strnpcinfo(1)+"::OnMobsDeath";
}
}
}
end;
OnMobsDeath:
.@RandMob = rand(getarraysize(.Prize2));
getitem .Prize2[.@RandMob],.PAmt2[.@RandMob];
end;
OnInit:
//Towns to Invade
setarray .Town$[0],"prontera","izlude","geffen","payon","alberta","aldebaran","yuno","lighthalzen","einbroch","einbech","comodo","umbala","amatsu","gonryun","ayothaya","louyang","hugel","rachel","veins";
//Prize to give Mobs
setarray .Prize2[0],7227,607,608,501,502,503,504,505,506,507,508,509,510,511,512;
setarray .PAmt2[0],1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
end;
}
What monsters will be spawn here? I deleted the MvP spawn.