Battledale_PRC8/_module/nss/jw_si_rend_tr_en.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

51 lines
713 B
Plaintext

// kill the stones
void KillStones();
void main()
{
object oPC=GetEnteringObject();
if (!GetIsPC(oPC))
{
return;
}
object oRend=GetObjectByTag("jw_sigard_rend");
if (!GetIsObjectValid(oRend))
{
return;
}
object oStone=GetObjectByTag("jw_sigard_stone");
if (!GetIsObjectValid(oStone))
{
return;
}
AssignCommand(oRend,ActionMoveToLocation(GetLocation(GetWaypointByTag("jw_place_rendgard")),TRUE));
DelayCommand(0.3,KillStones());
}
void KillStones()
{
object oStone=GetObjectByTag("jw_sigard_stone");
int nIdx=0;
while (GetIsObjectValid(oStone))
{
SetPlotFlag(oStone,0);
ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectDeath(TRUE),oStone);
nIdx++;
oStone=GetObjectByTag("jw_sigard_stone",nIdx);
}
}