Lankhmar_PRC8/_module/nss/cnv_dstry_mgte.nss

17 lines
293 B
Plaintext
Raw Permalink Normal View History

2025-04-03 12:54:47 -04:00
void main()
{
object oTarget;
effect eVFX;
// Get the PC who is in this conversation.
object oPC = GetPCSpeaker();
// Apply a visual effect.
eVFX = EffectVisualEffect(VFX_IMP_TORNADO);
oTarget = GetObjectByTag("AvatarofMog2");
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVFX, oTarget);
}