9 lines
195 B
Plaintext
9 lines
195 B
Plaintext
|
void main()
|
||
|
{
|
||
|
effect eInv = EffectInvisibility(INVISIBILITY_TYPE_DARKNESS);
|
||
|
if(GetIsEffectValid(eInv) == FALSE)
|
||
|
{
|
||
|
ApplyEffectToObject(DURATION_TYPE_PERMANENT, eInv, OBJECT_SELF);
|
||
|
}
|
||
|
}
|