PoA_PRC8/_module/nss/cursetrigger.nss
Jaysyn904 fbe69c466d Tweaked some undead
Tweaked some undead.
Added some map pins.
Full compile.
2025-05-05 21:05:20 -04:00

15 lines
354 B
Plaintext

void main()
{
object oCreature = GetEnteringObject();
//Make sure the opener is a PC
if (GetIsObjectValid(oCreature) == TRUE && GetIsPC(oCreature) == TRUE)
{
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectCurse(), oCreature, 90.0f);
SendMessageToPC(oCreature, "The very air you breathe in these catacombs is cursed.");
}
}