13 lines
253 B
Plaintext
13 lines
253 B
Plaintext
void main()
|
|
{
|
|
effect eVFX;
|
|
|
|
// Get the PC who is in this conversation.
|
|
object oPC = GetPCSpeaker();
|
|
|
|
// Apply a visual effect.
|
|
eVFX = EffectVisualEffect(VFX_IMP_MAGBLUE);
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVFX, oPC);
|
|
}
|
|
|