6 lines
186 B
Plaintext
6 lines
186 B
Plaintext
void main()
|
|
{ //used in onspawn to paralyze the creature permanently
|
|
effect eE = ExtraordinaryEffect(EffectParalyze());
|
|
ApplyEffectToObject(DURATION_TYPE_PERMANENT, eE, OBJECT_SELF);
|
|
}
|