Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
481
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. ; eBot - A bot for match management for CS:GO
  2. ; @license http://creativecommons.org/licenses/by/3.0/ Creative Commons 3.0
  3. ; @author Julien Pardons <julien.pardons@esport-tools.net>
  4. ; @version 3.0
  5. ; @date 21/10/2012
  6.  
  7. [BDD]
  8. MYSQL_IP = "127.0.0.1"
  9. MYSQL_PORT = "3306"
  10. MYSQL_USER = "ebotv3"
  11. MYSQL_PASS = "******"
  12. MYSQL_BASE = "ebotv3"
  13.  
  14. [Config]
  15. BOT_IP = "212.129.49.112"
  16. BOT_PORT = 12360
  17. SSL_ENABLED = false
  18. SSL_CERTIFICATE_PATH = "ssl/cert.pem"
  19. SSL_KEY_PATH = "ssl/key.pem"
  20. EXTERNAL_LOG_IP = "" ; use this in case your server isn't binded with the external IP (behind a NAT)
  21. MANAGE_PLAYER = 1
  22. DELAY_BUSY_SERVER = 120
  23. NB_MAX_MATCHS = 0
  24. PAUSE_METHOD = "nextRound" ; nextRound or instantConfirm or instantNoConfirm
  25. NODE_STARTUP_METHOD = "node" ; binary file name or none in case you are starting it with forever or manually
  26.  
  27. [Match]
  28. LO3_METHOD = "restart" ; restart or csay or esl
  29. KO3_METHOD = "restart" ; restart or csay or esl
  30. DEMO_DOWNLOAD = true ; true or false :: whether gotv demos will be downloaded from the gameserver after matchend or not
  31. REMIND_RECORD = false ; true will print the 3x "Remember to record your own POV demos if needed!" messages, false will not
  32. DAMAGE_REPORT = true ; true will print damage reports at end of round to players, false will not
  33. USE_DELAY_END_RECORD = false ; use the tv_delay to record postpone the tv_stoprecord & upload
  34.  
  35. [MAPS]
  36. MAP[] = "de_dust2_se"
  37. MAP[] = "de_nuke_se"
  38. MAP[] = "de_inferno_se"
  39. MAP[] = "de_mirage_ce"
  40. MAP[] = "de_train_se"
  41. MAP[] = "de_cache"
  42. MAP[] = "de_season"
  43. MAP[] = "de_dust2"
  44. MAP[] = "de_nuke"
  45. MAP[] = "de_inferno"
  46. MAP[] = "de_train"
  47. MAP[] = "de_mirage"
  48. MAP[] = "de_cbble"
  49. MAP[] = "de_overpass"
  50.  
  51. [WORKSHOP IDs]
  52.  
  53. [Settings]
  54. COMMAND_STOP_DISABLED = false
  55. RECORD_METHOD = "matchstart" ; matchstart or knifestart
  56. DELAY_READY = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement