Advertisement
Guest User

Untitled

a guest
Apr 9th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.13 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--Created by BigBrotherBot Config File Generator at http://config.bigbrotherbot.net (09 Nov 2015 - Mon 07:54:54 CET)-->
  3. <configuration>
  4. <settings name="b3">
  5. <!--Name of the bot.-->
  6. <set name="bot_name">b3</set>
  7. <!--Ingame messages are prefixed with this code, you can use colorcodes.-->
  8. <set name="bot_prefix"></set>
  9. <!--You can arrange the time format as specified in python's time directives.-->
  10. <set name="time_format">%I:%M%p %Z %m/%d/%y</set>
  11. <!--Set your server's timezone so all timebased lookups will show the proper time.-->
  12. <set name="time_zone">F</set>
  13. <!--The amount of logging you want in your b3.log file. Lower numbers log more information.-->
  14. <set name="log_level">9</set>
  15. <!--Name and path of the logfile the bot will generate.<br/>@conf : the folder containing this config file-->
  16. <set name="logfile">C:\B3.Bot/b3.log</set>
  17. <!--Your game parser.-->
  18. <set name="parser">cod4</set>
  19. <!--Your database info: [mysql]://[db-user]:[db-password]@[db-server[:port]]/[db-name]-->
  20. <set name="database">mysql://b3:b3@localhost/b3</set>
  21. </settings>
  22. <settings name="server">
  23. <!--Enter your rcon password.-->
  24. <set name="rcon_password">eliasdahlgren</set>
  25. <!--Enter your game server's rcon (admin) port.-->
  26. <set name="port">28960</set>
  27. <!--Enter your game server's public IP.-->
  28. <set name="public_ip"></set>
  29. <!--Enter your game server's rcon IP.-->
  30. <set name="rcon_ip">192.168.1.139</set>
  31. <!--Delay between each log reading. Set a higher value to consume less disk ressources or bandwidth if you remotely connect (ftp or http remote log access)-->
  32. <set name="delay">0.33</set>
  33. <!--Number of lines to process per second. Set a lower value to consume less CPU ressources-->
  34. <set name="lines_per_second">50</set>
  35. <!--Select on if you use Punkbuster, otherwise select off.-->
  36. <set name="punkbuster">on</set>
  37. <!--Select your game log file location.-->
  38. <set name="game_log">C:\Program Files (x86)\Steam\steamapps\common\Call of Duty 4\Mods\bd_promodlive_public\games_mp.log</set>
  39. </settings>
  40. <settings name="autodoc">
  41. <!--Select autodoc file type you want to use.-->
  42. <set name="type">html</set>
  43. <!--If you want to exclude commands reserved for higher levels, you may enter a lower value here.-->
  44. <set name="maxlevel">100</set>
  45. <!--Select the location where you want to generate your command documentation file.-->
  46. <set name="destination">C:\B3.Bot/b3_doc.html</set>
  47. </settings>
  48. <settings name="update">
  49. <!--B3 checks if a new version is available at startup. Choose here what channel you want to check against.-->
  50. <set name="channel">stable</set>
  51. </settings>
  52. <settings name="messages">
  53. <!--The message that will be displayed when a player is kicked by a mod/admin.-->
  54. <set name="kicked_by">$clientname^5 was ^1kicked ^3by $adminname^5 $reason</set>
  55. <!--The message that will be displayed when a player is kicked by B3.-->
  56. <set name="kicked">$clientname^5 was ^1kicked^3 $reason</set>
  57. <!--The message that will be displayed when a player is banned by a mod/admin.-->
  58. <set name="banned_by">$clientname^5 was ^1banned ^3by $adminname^5 $reason</set>
  59. <!--The message that will be displayed when a player is kicked by a B3.-->
  60. <set name="banned">$clientname^5 was ^1banned^3 $reason</set>
  61. <!--The message that will be displayed when a player is temp banned by a mod/admin.-->
  62. <set name="temp_banned_by">$clientname^5 was ^2temp banned ^3by $adminname^5 for $banduration^5 $reason</set>
  63. <!--The message that will be displayed when a player is temp banned by B3.-->
  64. <set name="temp_banned">$clientname^5 was ^2temp banned ^3for $banduration^5 $reason</set>
  65. <!--The message that will be displayed when a player is unbanned by a mod/admin.-->
  66. <set name="unbanned_by">$clientname^5 was ^2un-banned ^3by $adminname^5 $reason</set>
  67. <!--The message that will be displayed when a player is unbanned by B3-->
  68. <set name="unbanned">$clientname^5 was un-banned $reason</set>
  69. </settings>
  70. <settings name="plugins">
  71. <!--Enter here the path to the config folder for your external plugins.-->
  72. <set name="external_dir">@b3/extplugins</set>
  73. </settings>
  74. <plugins>
  75. <!--Warns players who spams the in game chat-->
  76.  
  77. <!--This plugin provides main B3 functionalities.-->
  78. <plugin name="admin" config="@conf/plugin_admin.ini"/>
  79. <!--Displays round based stats-->
  80. <plugin name="stats" config="@conf/plugin_stats.xml"/>
  81. <!--Notifies players with high ping-->
  82. <plugin name="pingwatch" config="@conf/plugin_pingwatch.ini"/>
  83. <!--Manages your server messages-->
  84. <plugin name="adv" config="@conf/plugin_adv.xml"/>
  85. <!--Writes server status to an xml file. This can be used by 3rd party tools to monitor server status.-->
  86. <plugin name="status" config="@conf/plugin_status.ini"/>
  87. <!--Welcomes players-->
  88. <plugin name="welcome" config="@conf/plugin_welcome.xml"/>
  89. <!--Provides Punkbuster features if enabled in server config.-->
  90. <plugin name="punkbuster" config="@conf/plugin_punkbuster.xml"/>
  91. <!--Allows easy sharing of cheater banlist between clans-->
  92.  
  93. <!--This plugin logs to database and/or file all clients' messages (chat, team chat, private chat).-->
  94. <plugin name="chatlogger" config="@b3/extplugins/conf/plugin_chatlogger.xml"/>
  95. <!--Records all player stats in your database.-->
  96. <plugin name="xlrstats" config="@b3/extplugins/conf/xlrstats.xml"/>
  97. <plugin name="poweradmincod7" config="@b3/conf/plugin_poweradmincod7.xml" />
  98. <plugin name="contact" config="@b3/extplugins/conf/contact.xml"/>
  99. <plugin name="voting" config="@b3/conf/voting.xml"/>
  100. <plugin name="statsinfo" config="@b3/extplugins/conf/statsinfo.xml"/>
  101. <plugin name="nickreg" config="@b3/conf/nickreg.xml"/>
  102. <plugin name="ipban" config="@b3/extplugins/conf/ipban.xml"/>
  103. <plugin name="funnyfarm" config="@b3/extplugins/conf/funnyfarm.xml"/>
  104. <plugin name="banlist" config="@b3/conf/plugin_banlist.xml" />
  105. <plugin name="callvote" config="@b3/conf/plugin_callvote.ini" />
  106. <plugin name="chatlogger" config="@b3/conf/plugin_chatlogger.ini" />
  107. <plugin name="countryfilter" config="@b3/conf/plugin_countryfilter.ini" />
  108. <plugin name="customcommands" config="@b3/conf/plugin_customcommands.ini" />
  109. <plugin name="duel" />
  110. <plugin name="firstkill" config="@b3/conf/plugin_firstkill.ini" />
  111. <plugin name="geowelcome" config="@b3/conf/plugin_geowelcome.ini" />
  112. <plugin name="jumper" config="@b3/conf/plugin_jumper.ini" />
  113. <plugin name="location" config="@b3/conf/plugin_location.ini" />
  114. <plugin name="makeroom" config="@b3/conf/plugin_makeroom.ini" />
  115. <plugin name="netblocker" config="@b3/conf/plugin_netblocker.ini" />
  116. <plugin name="nickreg" config="@b3/conf/plugin_nickreg.ini" />
  117. <plugin name="spree" config="@b3/conf/plugin_spree.ini" />
  118. <plugin name="xlrstats" config="@b3/conf/plugin_xlrstats.ini" />
  119. <plugin name="spamcontrol" config="@b3/conf/plugin_spamcontrol.ini" />
  120.  
  121. </plugins>
  122. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement