private static void init() throws GameActionException {
   // things that run for the first time
   personalHQ = rc.getLocation();
   defendQueue = new LinkedList<Integer>();
   moveQueue = new LinkedList<MapLocation>();
   rnd = new Random(rc.getID());
   Radio.broadcastInitialStrategyRequest(10);
 }