19 lines
589 B
Plaintext
19 lines
589 B
Plaintext
//:://////////////////////////////////////////////
|
|
//:: Created By: bf
|
|
//:: Created On: March 17, 2003
|
|
//:://////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
//Declare major variables
|
|
effect eVis = EffectVisualEffect(VFX_DUR_GHOSTLY_VISAGE);
|
|
effect eConceal = EffectConcealment(10);
|
|
effect eDur = EffectVisualEffect(149); //arrived from /eff 149
|
|
effect eLink = EffectLinkEffects(eDur, eVis);
|
|
eLink = EffectLinkEffects(eLink, eConceal);
|
|
|
|
//Apply the VFX impact and effects
|
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, OBJECT_SELF, 4.5);
|
|
}
|
|
|