Changeset 2225
- Timestamp:
- 04/16/12 11:32:43 (14 months ago)
- Files:
-
- 1 modified
-
Enemy-Territory/0.8/global_scripts/commands.gm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Enemy-Territory/0.8/global_scripts/commands.gm
r2024 r2225 240 240 }, 241 241 }; 242 243 ///////////////////////////////////////////////////////////////////////////////244 245 Commands["stopall"] =246 {247 Func = function(_params)248 {249 Util.StopAllBots();250 },251 252 Help =253 {254 "Stop All, disables movement for all bots",255 "Usage: /bot stopall",256 },257 };258 259 ///////////////////////////////////////////////////////////////////////////////260 261 Commands["startall"] =262 {263 Func = function(_params)264 {265 Util.StartAllBots();266 },267 268 Help =269 {270 "Start All, enables movement for all bots",271 "Usage: /bot startall",272 },273 };274 275 242 276 243 ///////////////////////////////////////////////////////////////////////////////