19 lines
533 B
Plaintext
19 lines
533 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC = GetEnteringObject();
|
||
|
object oTarget = GetWaypointByTag("wp_rh_outside");
|
||
|
location lTarget = GetLocation(oTarget);
|
||
|
effect eVis = EffectVisualEffect(VFX_IMP_TORNADO);
|
||
|
effect eHold = EffectCutsceneImmobilize();
|
||
|
|
||
|
//if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
|
||
|
|
||
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY,eHold , oPC,3.0);
|
||
|
ApplyEffectAtLocation(DURATION_TYPE_INSTANT,eVis,GetLocation(oPC));
|
||
|
AssignCommand(oPC,ActionSpeakString("What the!!?"));
|
||
|
AssignCommand(oPC, DelayCommand(1.0,ActionJumpToLocation(lTarget)));
|
||
|
|
||
|
}
|