gameId=(gameId==null||"optional".equals(gameId)?System.currentTimeMillis()+"":gameId);
Game game = new Game(gameId,mp);
Engine.instance().games.put(game.getId(),game);
game.setMapPath("/maps/palmerstonNorth.xml");
IUser mrx = Engine.instance().login(mrxEmail,mrxName,"0");
IUser detective = Engine.instance().login(detectiveEmail,detectiveName,"1");
game.addPlayer(mrx,true);
game.addPlayer(detective,false);
game.start(game.getPlayer(mrxHash));
}