REO-EE/_module/nss/ghostwalk.nss
Jaysyn904 f82740bbbd Initial commit
Initial commit
2024-02-22 13:22:03 -05:00

15 lines
417 B
Plaintext

// Called on Module OnEnter
// Applies the cutscene Ghostwalk effect to a PC permanently.
// This will remove the ability to "push" other players, which sometimes causes
// them to leave the tileset.
void main()
{
object oPC = GetEnteringObject();
if(!GetIsPC(oPC) || GetIsDM(oPC)) return;
effect eGhostWalk = EffectCutsceneGhost();
ApplyEffectToObject(DURATION_TYPE_PERMANENT, eGhostWalk, oPC);
}