9 lines
250 B
Plaintext
9 lines
250 B
Plaintext
///
|
|
// This script fires when the friendly ethereal guardian gets attacked
|
|
|
|
void main()
|
|
{
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectHeal(500), OBJECT_SELF);
|
|
FloatingTextStringOnCreature("You cannot hurt me here.", OBJECT_SELF, FALSE);
|
|
}
|