11 lines
379 B
Plaintext
11 lines
379 B
Plaintext
void main()
|
|
{
|
|
object oPC = GetLastUsedBy();
|
|
location lTarget = GetLocation(oPC);
|
|
effect eEffect1 = EffectVisualEffect(VFX_FNF_HOWL_ODD);
|
|
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eEffect1, lTarget);
|
|
object oTarget = GetWaypointByTag("BharthanPass"); //or whatever the tag is for your destination waypoint
|
|
AssignCommand(oPC, JumpToObject(oTarget));
|
|
}
|
|
|