Flags are the best way to control a Subroutine, so if you are using a script that says
*** IF ***
True.
*** THEN ***
Team '<This Team>' begins hunting.
Make another script to initialize or set the flag to zero.
*** IF ***
True.
*** THEN ***
Set Flag named 'StartHunt' to FALSE
Then have your timer set the flag to true.
*** IF ***
Timer 'HuntingTimer' has expired.
*** THEN ***
Set Flag named 'StartHunt' to TRUE
Apply this flag to your Hunt script.
*** IF ***
Flag named 'StartHunt' IS TRUE
*** THEN ***
Team '<This Team>' begins hunting.
Use this script for the On Create behavior for the team.
drummin wrote: