Files
Anphillia_PRC8/_module/nss/wa_nullmagicon.nss
Jaysyn904 28cdb617b3 Initial commit
Adding all of the current content for Anphillia Unlimited.
2024-01-04 07:49:38 -05:00

14 lines
397 B
Plaintext

#include "prc_inc_spells"
void main()
{
object oPC = GetEnteringObject();
if (GetLocalInt(oPC, "nullified") == 1)
return;
SetLocalInt(oPC, "nullified", 1);
ApplyEffectToObject(DURATION_TYPE_PERMANENT, SupernaturalEffect(EffectSpellFailure()), GetEnteringObject());
if (PRCGetCasterLevel(oPC) > 0)
{
FloatingTextStringOnCreature("You feel weak...", oPC, FALSE);
}
}