Files
HeroesStone_PRC8/_module/nss/kamikwe_ondamage.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

12 lines
397 B
Plaintext

void main()
{
if (GetLocalInt(OBJECT_SELF,"blastonce") != 1)
{
SetLocalInt(OBJECT_SELF,"blastonce",1);
ClearAllActions(TRUE);
ActionCastSpellAtLocation(SPELL_FIREBALL,GetLocation(OBJECT_SELF),METAMAGIC_ANY,TRUE,PROJECTILE_PATH_TYPE_BALLISTIC,TRUE);
AdjustReputation(OBJECT_SELF,OBJECT_SELF,50);
DelayCommand(2.0,DestroyObject(OBJECT_SELF));
}
}