11 lines
342 B
Plaintext
11 lines
342 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC = GetLastUsedBy();
|
||
|
location lTarget = GetLocation(oPC);
|
||
|
object oTarget = GetWaypointByTag("jumpokonatil");
|
||
|
effect eEffect1 = EffectVisualEffect(VFX_FNF_HOWL_ODD);
|
||
|
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect1, lTarget);
|
||
|
DelayCommand(1.0, AssignCommand(oPC, JumpToObject(oTarget)));
|
||
|
|
||
|
}
|