/////////////////////////////////////////////////////////////////////////////// Commands["aim_debug"] = function( _params ) { print( "Executing aim debugging script." ); ETUtil.DebugBotAim( _params[0] ); }; /////////////////////////////////////////////////////////////////////////////// Commands["aim_debug_reload"] = function( _params ) { foreach ( gameId and bot in BotTable ) { bot.ReloadProfile(); } }; /////////////////////////////////////////////////////////////////////////////// // The command, "\bot makemapgm", executes the function Mapgm.MakeMapgm to create // a map script in gm script Commands["makemapgm"] = function( _params ) { ExecScript( "makemapgm.gm" ); EchoToScreen( 0, 3, "Executing make map gm script." ); print( "Executing make map gm script." ); Mapgm.MakeMapgm(); }; /////////////////////////////////////////////////////////////////////////////// Commands["testmap"] = function( _params ) { ETUtil.TestMap( _params ); }; /////////////////////////////////////////////////////////////////////////////// Commands["cvp"] = function( _params ) { ETUtil.CheckVehiclePath( _params ); }; /////////////////////////////////////////////////////////////////////////////// Commands["cvpo"] = function( _params ) { ETUtil.CheckVehiclePathOff(); }; /////////////////////////////////////////////////////////////////////////////// Commands["bvp"] = function( _params ) { ETUtil.BuildVehiclePath( _params ); }; /////////////////////////////////////////////////////////////////////////////// Commands["bvpo"] = function( _params ) { ETUtil.BuildVehiclePathOff(); }; /////////////////////////////////////////////////////////////////////////////// Commands["warpto"] = function( _params ) { ETUtil.WarpTo( _params ); };