- script invasion -1,{
set .@map$,"prontera"; // will summon all monsters in prontera, change as you wish
set .@itemid,30001; //Prize item id
//Normal Mob
set .@mobid_1,1712; //Set mob id here
set .@mobid_2,1705;
set .@mobid_3,1644;
set .@mobid_4,1642;
//MVP
set .@mvpid_1,2022; //Set mvp mob id here
set .@mvpid_2,1630;
set .@mvpid_3,1751;
set .@mvpid_4,rand(1646,1651); //summons random bio3 mvp
set .@mvpid_5,1832;
OnClock1700:
if(gettime(4) != 6 || gettime(4) != 1) end;
monster .@map$,0,0,"Summon Event",.@mobid_1,500,strnpcinfo(0)"::OnNormal";
monster .@map$,0,0,"Summon Event",.@mobid_2,500,strnpcinfo(0)"::OnNormal";
monster .@map$,0,0,"Summon Event",.@mobid_3,500,strnpcinfo(0)"::OnNormal";
monster .@map$,0,0,"Summon Event",.@mobid_4,500,strnpcinfo(0)"::OnNormal";
monster .@map$,0,0,"Summon Event",.@mobid_1,1,strnpcinfo(0)"::OnMVP";
monster .@map$,0,0,"Summon Event",.@mobid_2,1,strnpcinfo(0)"::OnMVP";
monster .@map$,0,0,"Summon Event",.@mobid_3,1,strnpcinfo(0)"::OnMVP";
monster .@map$,0,0,"Summon Event",.@mobid_4,1,strnpcinfo(0)"::OnMVP";
monster .@map$,0,0,"Summon Event",.@mobid_5,1,strnpcinfo(0)"::OnMVP";
end;
OnNormal:
getitem .@itemid,1;
end;
OnMVP:
getitem .@itemid,100;
end;
}