// kuotoa_mission - Handle all things relating to the Kuoa-Toa Mission #include "antistuck_h" void fnRaidBehavior() { // PURPOSE: Handle Raider movement object oMe=OBJECT_SELF; object oDest; int nR; int nState=GetLocalInt(oMe,"nRaidState"); if (GetIsInCombat(oMe)==FALSE&&GetLocalInt(oMe,"bDespawn")==FALSE) { // ok if (nState==0) { // pick destination nR=Random(7)+1; oDest=GetWaypointByTag("KUORAID_"+IntToString(nR)); SetLocalObject(oMe,"oRaidDest",oDest); if (oDest==OBJECT_INVALID) SendMessageToPC(GetFirstPC(),"Error: (kuotoa_mission)-> Cannot find KUORAID_"+IntToString(nR)+" waypoint."); AssignCommand(oMe,ASActionMoveToObject(oDest,FALSE,1.0)); SetLocalInt(oMe,"nRaidState",1); } // pick destination else { // moving oDest=GetLocalObject(oMe,"oRaidDest"); if (GetDistanceBetween(oMe,oDest)>3.0) { // move AssignCommand(oMe,ASActionMoveToObject(oDest,FALSE,1.0)); } // move else { // state DeleteLocalInt(oMe,"nRaidState"); } // state } // moving } // ok if (GetIsInCombat(oMe)==FALSE&&GetLocalInt(oMe,"bDespawn")==TRUE) { // handle despawn oDest=GetWaypointByTag("KUORAID_SPAWN"); if (GetDistanceBetween(oMe,oDest)>1.5) { // move AssignCommand(oMe,ASActionMoveToObject(oDest,TRUE,1.0)); } // move else { // despawn DestroyObject(oMe); } // despawn } // handle despawn DelayCommand(8.0,fnRaidBehavior()); } // fnRaidBehavior() void fnSpawnThem(int nQty) { // PURPOSE: To spawn nQty of raiders int nL; object oC; object oWP=GetWaypointByTag("KUORAID_SPAWN"); nL=0; while(nL0) { // has completed quests fnSpawnPage(oPC); } // has completed quests } // has not answered a page } // no page exists oPC=GetNextPC(); } // check PCs } // fnCheckForPagesNeeded() void main() { object oMod=GetModule(); object oKuoToaLeader=GetObjectByTag("KuoToaGreatShaman"); object oOb; object oWP; int nN; int nC; int nHour=GetTimeHour(); if (oKuoToaLeader!=OBJECT_INVALID) { // kuotoaleader still lives if (nHour>6&&nHour<12) { // create pages fnCheckForPagesNeeded(); } // create pages else if (nHour>19||nHour<4) { // spawn raiders fnSpawnRaiders(); } // spawn raiders else if (nHour>3&&nHour<20) { // despawn raiders fnDespawnRaiders(); } // despawn raiders } // kuotoaleader still lives }