generated from Jaysyn/ModuleTemplate
9 lines
261 B
Plaintext
9 lines
261 B
Plaintext
//Script by Paco Deth, Put this in your OnSpawn of the NPC you want to be a statue.
|
|
void main()
|
|
{
|
|
effect ePacStatue = SupernaturalEffect(EffectVisualEffect(VFX_DUR_FREEZE_ANIMATION));
|
|
ApplyEffectToObject(DURATION_TYPE_PERMANENT, ePacStatue, OBJECT_SELF);
|
|
}
|
|
|
|
|