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

27 lines
477 B
Plaintext

void main()
{
int nTarget=Random(40)+1;
int nRandom=Random(3);
object oTarget=GetNearestObjectByTag("jw_air_invis",OBJECT_SELF,nTarget);
if (nRandom==0)
{
ActionCastSpellAtLocation(SPELL_MASS_BLINDNESS_AND_DEAFNESS,GetLocation(oTarget),METAMAGIC_ANY,TRUE);
}
if (nRandom==1)
{
ActionCastSpellAtLocation(SPELL_ICE_STORM,GetLocation(oTarget),METAMAGIC_ANY,TRUE);
}
if (nRandom==2)
{
ActionCastSpellAtLocation(SPELL_ICE_STORM,GetLocation(oTarget),METAMAGIC_ANY,TRUE);
}
}