Do any of you know if there is a string i can type so after a certain ammount of time it exits out of another script and how to check if the other script is still running so the timer doesn't go off after the other script is finished. Or if i can use one script instead of two to do that. This is what I have...
#Loop
?!(Alive ap1):Goto "ap1dead";
?!(Alive ap2):Goto "ap2dead";
Goto "Loop";
#ap1dead
Titletext [format["%1 Wins The Match!",Name ap2], "PLAIN"];
PlaySound "win";
[] exec "r1m2cut.sqs";
~5
TitleText ["","PLAIN"];
Goto "Exit";
#ap2dead
Titletext [format["%1 Wins The Match!",Name ap1], "PLAIN"];
PlaySound "win";
~5
[] exec "r1m2cut.sqs"
TitleText ["","PLAIN"]
Goto "Exit"
#Exit
~1.2
Removeallweapons ap1;
Removeallweapons ap2;
Exit
Is there a way to make it go to two parts of a script and skip the rest like...
start here:
#Loop
?!(Alive ap1):Goto "ap1dead";
?!(Alive ap2):Goto "ap2dead";
Goto "Loop";
and also be timing it: so it will be in the loop as well as the timer...
something like this...
#Loop
?!(Alive ap1):Goto "ap1dead";
?!(Alive ap2):Goto "ap2dead";
Goto "Loop";
#Timer
~30
hint "you have 30 seconds left..."
~30
hint "times up, its a draw"
Goto "exit"
Make it goto both Loop and Timer at the same time in the same script...
If not is there a way to check if another script is running in the timer script so the timer doesn't go off after the other script is finished...
Please help IM SO STUPID!