18 lines
419 B
Plaintext
18 lines
419 B
Plaintext
|
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)));
|
||
|
|
||
|
}
|
||
|
}
|