18 lines
419 B
Plaintext
Raw Permalink Normal View History

2023-08-08 16:22:17 -04:00
void main()
{
if (GetTag(GetItemActivated()) == "wkdkey")
{
object oPC = GetItemActivator();
object oTarget = GetWaypointByTag("WP_wkd_enter");
location lTarget = GetLocation(oTarget);
AssignCommand(oPC, ClearAllActions());
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_SUMMONDRAGON),lTarget);
DelayCommand(2.0, AssignCommand(oPC, ActionJumpToLocation(lTarget)));
}
}