Battledale_PRC8/_module/nss/jw_faketres_open.nss
Jaysyn904 7b9e44ebbb Initial upload
Initial upload.  PRC8 has been added.  Module compiles, PRC's default AI & treasure scripts have been integrated.  Started work on top hak for SLA / Ability / Scripting modifications.
2024-03-11 23:44:08 -04:00

30 lines
587 B
Plaintext

void main()
{
object oMob;
int nAgain;
for (nAgain=1;nAgain<=3;nAgain++)
{
oMob=CreateObject(OBJECT_TYPE_CREATURE,"nw_willowisp",GetLocation(OBJECT_SELF),TRUE);
ApplyEffectAtLocation(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_FNF_SUMMON_MONSTER_3),GetLocation(oMob));
}
int nCounter=1;
object oObject=GetNearestObjectByTag("jw_fake_tres",OBJECT_SELF,nCounter);
while (GetIsObjectValid(oObject))
{
DestroyObject(oObject);
nCounter++;
oObject=GetNearestObjectByTag("jw_fake_tres",OBJECT_SELF,nCounter);
}
if (GetIsObjectValid(OBJECT_SELF))
{
DestroyObject(OBJECT_SELF);
}
}