PoA_PRC8/_module/nss/queenexit.nss

9 lines
316 B
Plaintext
Raw Normal View History

2022-10-07 14:20:31 -04:00
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)));
}