Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.89 KB | None | 0 0
  1. <?xml version='1.0'?>
  2.  
  3. <configuration>
  4. <settings name="b3">
  5. <!-- Define your game: cod/cod2/cod4/cod5/cod6/iourt41/etpro/wop/smg/bfbc2/moh -->
  6. <set name="parser">cod6</set>
  7. <!-- Your database info: [mysql]://[db-user]:[db-password]@[db-server[:port]]/[db-name] -->
  8. <set name="database">mysql://Load:Load@localhost/b3_Load</set>
  9. <!-- Name of the bot -->
  10. <set name="bot_name">NBS Bot</set>
  11. <set name="bot_prefix">^0(^2NBS Bot^0)^7:</set>
  12. <!-- Ingame messages are prefixed with this code, you can use colorcodes -->
  13. <set name="time_format">%I:%M%p %Z %m/%d/%y</set>
  14. <!-- The timezone your bot is in -->
  15. <set name="time_zone">CST</set>
  16. <!-- How much detail in the logfile: 9 = verbose, 10 = debug, 21 = bot, 22 = console -->
  17. <set name="log_level">1</set>
  18. <!-- Name of the logfile the bot will generate -->
  19. <set name="logfile">b3.log</set>
  20. </settings>
  21. <settings name="server">
  22. <!-- The RCON pass of your gameserver -->
  23. <set name="rcon_password">xxB3NBS</set>
  24. <!-- The port the server is running on -->
  25. <set name="port">28960</set>
  26. <!-- The gameserver generates a logfile, put the path and name here -->
  27. <set name="game_log">C:\UserFiles\Load\GameServers\TC21603035412813054722830\main\games_mp.log</set>
  28. <!-- The public IP your gameserver is residing on -->
  29. <set name="public_ip">66.185.21.54</set>
  30. <!-- The IP the bot can use to send RCON commands to (127.0.0.1 when on the same box) -->
  31. <set name="rcon_ip">66.185.21.54</set>
  32. <!-- Is the gameserver running PunkBuster Anticheat: on/off -->
  33. <set name="punkbuster">off</set>
  34. </settings>
  35. <settings name="autodoc">
  36. <!-- Autodoc will generate a user documentation for all B3 commands -->
  37. <!-- by default, a html documentation is created in your conf folder -->
  38.  
  39. <!-- html, htmltable or xml -->
  40. <set name="type">html</set>
  41. <!-- if you want to exclude commands reserved for higher levels -->
  42. <set name="maxlevel">100</set>
  43. <!-- Destination can be a file or a ftp url -->
  44. <set name="destination">test_doc.html</set>
  45. </settings>
  46. <settings name="messages">
  47. <set name="kicked_by">%s^7 was kicked by %s^7 %s</set>
  48. <set name="kicked">%s^7 was kicked %s</set>
  49. <set name="banned_by">%s^7 was banned by %s^7 %s</set>
  50. <set name="banned">%s^7 was banned %s</set>
  51. <set name="temp_banned_by">%s^7 was temp banned by %s^7 for %s^7 %s</set>
  52. <set name="temp_banned">%s^7 was temp banned for %s^7 %s</set>
  53. <set name="unbanned_by">%s^7 was un-banned by %s^7 %s</set>
  54. <set name="unbanned">%s^7 was un-banned %s</set>
  55. </settings>
  56. <settings name="plugins">
  57. <set name="external_dir">@b3/extplugins</set>
  58. </settings>
  59. <plugins><!-- plugin order is important. Plugins that add new in-game commands all depend on the admin plugin. Make sure to have the admin plugin before them. -->
  60.  
  61. <plugin config="@conf/plugin_admin.xml" name="admin" />
  62. <plugin config="@conf/plugin_stats.xml" name="stats" />
  63. <plugin config="@conf/plugin_adv.xml" name="adv" />
  64. <plugin config="@conf/plugin_status.xml" name="status" />
  65. <plugin config="@conf/plugin_welcome.xml" name="welcome" />
  66.  
  67.  
  68. <!-- Uncomment to enable these plugins.
  69. <plugin config="@b3/extplugins/conf/xlrstats.xml" name="xlrstats" />
  70. <plugin config="@conf/plugin_pingwatch.xml" name="pingwatch" />
  71. <plugin config="@conf/plugin_tk.xml" name="tk" />
  72. <plugin config="@conf/plugin_censor.xml" name="censor" />
  73. <plugin config="@conf/plugin_spamcontrol.xml" name="spamcontrol" />
  74. -->
  75. <!-- The punkbuster plugin was not installed since punkbuster is not supported or disabled. -->
  76. <!-- The next plugins are external, 3rd party plugins and should reside in the external_dir. Example: -->
  77. <!-- plugin config="@b3/extplugins/conf/newplugin.xml" name="newplugin" -->
  78. <!-- You can add new/custom plugins to this list using the same form as above. -->
  79. </plugins>
  80. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement