Advertisement
TheAlkaris

TF2 Bot Script

Aug 10th, 2014
3,738
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CFDG 2.93 KB | None | 0 0
  1. // Team Fortress 2 BOTS script
  2. //
  3. // Safe friendly battle with no annoying bot stuffs
  4. //
  5. // dump this script into your cfg directory; Team Fortress 2/tf/cfg/botsy.cfg
  6. // and you should be able to run from console by typing; exec botsy.cfg
  7. //  you can also put the script into /tf/custom/your_folder/botsy.cfg and still run it.
  8.  
  9. tf_bot_kick all                              // kick any and all existing bots on the map
  10. mp_autoteambalance 0                         // Fix the team autobalance with bots and other players
  11. mp_teams_unbalance_limit 10          // usually when having a map loaded with bots + human players it causes team unbalance
  12. tf_overtime_nag 1                            // because shit's funny when you're constantly nagged for Overtime.
  13. tf_forced_holiday 2                          // force any holiday event (server OP command)
  14.                                              //   - 0: default
  15.                                              //   - 1: Birthday
  16.                                              //   - 2: Halloween
  17.                                              //   - 3: Christmas
  18.                                              //   - 4: Valentine's Day
  19.                                              //   - 5: Meet the Pyro (Unused)
  20.                                              //   - 6: Full Moon
  21.  
  22. tf_bot_keep_class_after_death 1              // bots keep same class after death, on default they swap class randomly.
  23. tf_bot_add sniper red expert Killa-Clown-1  
  24. tf_bot_add sniper red expert Killa-Clown-4  
  25. tf_bot_add engineer red expert Killa-Clown-2
  26. tf_bot_add engineer red expert Killa-Clown-3  // adding bots on RED - [ CLASS_NAME + TEAM + BOT_DIFFICULTY + BOT_NAME ]
  27. tf_bot_add sniper red expert Dipsydora-1      
  28. tf_bot_add medic red expert Dipsydora-2      
  29. tf_bot_add medic red expert Glutchferg-1      // follow simple syntax for adding bots
  30. tf_bot_add medic red expert Glutchferg-2      //
  31. tf_bot_add spy red expert Beetus-2            // tf_bot_add <CLASS> <TEAM> <BOT_DIFFICULTY> <BOT_NAME>
  32. tf_bot_add spy red expert Beetus              
  33. tf_bot_add engineer blue expert Gorveksho-1   //  valid class names: scout, soldier, demoman, engineer, sniper,
  34. tf_bot_add engineer blue normal Gorveksho-2   //  heavyweapons, medic, pyro, spy
  35. tf_bot_add sniper blue easy Gorveksho-3      
  36. tf_bot_add medic blue expert Gluvokavich      // adding bots on BLUE - [ CLASS_NAME + TEAM + BOT_DIFFICULTY + BOT_NAME ]
  37. tf_bot_add engineer blue normal Heelme-1
  38. tf_bot_add engineer blue normal Heelme-2      // valid difficulty levels; easy, normal, expert
  39. tf_bot_add medic blue normal Heelme-3
  40. tf_bot_add sniper easy normal EzPie
  41. tf_bot_add sniper easy normal EzPie-2
  42. tf_bot_add sniper blue normal EzPie-3
  43.  
  44. mp_disable_respawn_times 1                    // disable respawn times, you still get deathcam with 3-5 sec respawn delay
  45. tf_quickplay_pref_respawn_times 1             // not too sure what this setting does, but related to respawn time
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement