HoS_PRC8/_mod/_module/nss/ck_shadows_mid.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

26 lines
637 B
Plaintext

int CountShadowCreatures()
{ // return number of active shadow creatures
int nRet=0;
object oWP=GetWaypointByTag("SHADOW_ENTRANCE_POINT");
int nC=1;
object oCR=GetNearestObject(OBJECT_TYPE_CREATURE,oWP,nC);
while(oCR!=OBJECT_INVALID)
{ // count them
if (!GetIsPC(oCR))
{ // is not a PC
if (GetIsEnemy(GetFirstPC(),oCR)==TRUE)
nRet++;
} // is not a PC
nC++;
oCR=GetNearestObject(OBJECT_TYPE_CREATURE,oWP,nC);
} // count them
return nRet;
} // CountShadowCreatures()
int StartingConditional()
{
int nReturn=FALSE;
if (CountShadowCreatures()>2) nReturn=TRUE;
return nReturn;
}