9 lines
316 B
Plaintext
9 lines
316 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC=GetLastUsedBy();
|
||
|
location exit =GetLocation( GetObjectByTag("queenexit"));
|
||
|
location out = GetLocation(GetWaypointByTag ("out"));
|
||
|
ApplyEffectAtLocation (DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_FNF_IMPLOSION), exit);
|
||
|
DelayCommand( 3.5, AssignCommand(oPC, ActionJumpToLocation(out)));
|
||
|
}
|