PRC8/trunk/spells/tsspellhook.nss
Jaysyn904 1662218bb4 Initial upload.
Adding base PRC 4.19a files to repository.
2022-10-07 13:51:24 -04:00

16 lines
386 B
Plaintext

#include "prc_alterations"
#include "inc_utility"
#include "x2_inc_spellhook"
void main()
{
int nSpell = GetSpellId();
object oTarget = PRCGetSpellTargetObject();
if(!GetIsObjectValid(oTarget)
|| oTarget != OBJECT_SELF
|| Get2DACache("spells", "HostileSetting", nSpell) == "1")
{
PRCSetUserSpecificSpellScriptFinished();
return;
}
}