EN6_PRC8/_module/nss/en6_mq6_ambush2.nss
Jaysyn904 a6f6db7303 Initial commit
Initial commit.  Updated release archive.
2024-06-13 15:08:33 -04:00

53 lines
1.5 KiB
Plaintext

#include "qst_include"
void main()
{
object oPC;
int iMQNumber;
string sZone;
int iBoss;
if (GetLocalInt(OBJECT_SELF,"DoOnce")>0)
return;
oPC=GetEnteringObject();
iMQNumber=GetLocalInt(GetModule(),"MQNumber");
if (GetIsPC(oPC) && iMQNumber == 6 && GetLocalInt(oPC,"MQ6ItemMade")>0 && !GetIsDead(GetObjectByTag(GetOverallBossTag())))
{
SetLocalInt(OBJECT_SELF,"DoOnce",1);
if (Random(2)==0)
return;
sZone=GetLocalString(GetArea(oPC),"Zone");
SetLocalString(GetModule(),"SPAWN_Zone",sZone);
SetLocalString(GetModule(),"SPAWN_CampType","A");
SetLocalInt(GetModule(),"SPAWN_Camp",1);
SetLocalInt(GetModule(),"SPAWN_Boss",0);
iBoss=GetLocalInt(GetModule(),"OverallQuestBoss");
if (iBoss > 2 && iBoss != 4)
{
GetQuestCamp(1,GetMinLevel(sZone)+ Random(2) + 1);
SetLocalInt(GetModule(),"SPAWN_Camp",2);
GetQuestCamp(12,GetMinLevel(sZone)+ Random(2) + 1);
}
else if (iBoss==4)
{
if (Random(2)==0)
GetQuestCamp(8,GetMinLevel(sZone)+ Random(2) + 1);
else
GetQuestCamp(16,GetMinLevel(sZone)+ Random(2) + 1);
SetLocalInt(GetModule(),"SPAWN_Camp",2);
GetQuestCamp(12,GetMinLevel(sZone)+ Random(2) + 1);
}
else
{
GetQuestCamp(12,GetMinLevel(sZone)+ Random(2) + 1);
SetLocalInt(GetModule(),"SPAWN_Camp",2);
GetQuestCamp(12,GetMinLevel(sZone)+ Random(2) + 1);
}
}
SetLocalString(GetModule(),"SPAWN_CampType","C");
}