Advertisement
Guest User

Untitled

a guest
Aug 4th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 5.01 KB | None | 0 0
  1. <?xml version='1.0'?>
  2. <!--
  3. This file is generated by the B3 setup Procedure.
  4. If you want to regenerate this file and make sure the format is
  5. correct, you can invoke the setup procedure with the
  6. command : b3_run -s b3.xml
  7.  
  8. This is B3 main config file (the one you specify when you run B3 with the
  9. command : b3_run -c b3.xml)
  10.  
  11. For any change made in this config file, you have to restart the bot.
  12. Whenever you can specify a file/directory path, the following shortcuts
  13. can be used :
  14.  @b3 : the folder where B3 code is installed in
  15.  @conf : the folder containing this config file
  16. -->
  17. <configuration>
  18.     <settings name="b3">
  19.         <!-- Define your game: cod/cod2/cod4/cod5/cod6/iourt41/etpro/wop/smg/bfbc2/moh -->
  20.         <set name="parser">iourt41</set>
  21.         <!-- Your database info: [mysql]://[db-user]:[db-password]@[db-server[:port]]/[db-name] -->
  22.         <set name="database">*******</set>
  23.         <!-- Name of the bot -->
  24.         <set name="bot_name">Wykopiator</set>
  25.         <!-- Ingame messages are prefixed with this code, you can use colorcodes -->
  26.         <set name="bot_prefix">^1[^2BOT^1]^7:</set>
  27.         <set name="time_format">%I:%M%p %Z %m/%d/%y</set>
  28.         <!-- The timezone your bot is in -->
  29.         <set name="time_zone">GMT</set>
  30.         <!-- How much detail in the logfile: 9 = verbose, 10 = debug, 21 = bot, 22 = console -->
  31.         <set name="log_level">9</set>
  32.         <!-- Name of the logfile the bot will generate -->
  33.         <set name="logfile">b3.log</set>
  34.     </settings>
  35.     <settings name="server">
  36.         <!-- The RCON pass of your gameserver -->
  37.         <set name="rcon_password">*****************</set>
  38.         <!-- The port the server is running on -->
  39.         <set name="port">27960</set>
  40.         <!-- The gameserver generates a logfile, put the path and name here -->
  41.         <set name="game_log">**************************************</set>
  42.         <!-- The public IP your gameserver is residing on -->
  43.         <set name="public_ip">*******</set>
  44.         <!-- The IP the bot can use to send RCON commands to (127.0.0.1 when on the same box) -->
  45.         <set name="rcon_ip">************</set>
  46.         <!-- Is the gameserver running PunkBuster Anticheat: on/off -->
  47.         <set name="punkbuster">off</set>
  48.     </settings>
  49.     <settings name="autodoc">
  50.         <!-- Autodoc will generate a user documentation for all B3 commands -->
  51.         <!-- by default, a html documentation is created in your conf folder -->
  52.  
  53.         <!-- html, htmltable or xml -->
  54.         <set name="type">html</set>
  55.         <!-- if you want to exclude commands reserved for higher levels -->
  56.         <set name="maxlevel">100</set>
  57.         <!-- Destination can be a file or a ftp url -->
  58.         <set name="destination">test_doc.html</set>
  59.     </settings>
  60.     <settings name="messages">
  61.         <set name="kicked_by">%s^7 was kicked by %s^7 %s</set>
  62.         <set name="kicked">%s^7 was kicked %s</set>
  63.         <set name="banned_by">%s^7 was banned by %s^7 %s</set>
  64.         <set name="banned">%s^7 was banned %s</set>
  65.         <set name="temp_banned_by">%s^7 was temp banned by %s^7 for %s^7 %s</set>
  66.         <set name="temp_banned">%s^7 was temp banned for %s^7 %s</set>
  67.         <set name="unbanned_by">%s^7 was un-banned by %s^7 %s</set>
  68.         <set name="unbanned">%s^7 was un-banned %s</set>
  69.     </settings>
  70.     <settings name="plugins">
  71.         <set name="external_dir">@b3/extplugins</set>
  72.     </settings>
  73.     <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. -->
  74.  
  75.         <plugin config="@conf/plugin_admin.xml" name="admin" />
  76.         <plugin name="poweradminurt" priority="2" config="@b3/extplugins/conf/poweradminurt.xml"/>
  77.     <plugin config="@conf/plugin_status.xml"  name="status" />
  78.     <plugin config="@conf/plugin_ctime.xml"  name="ctime" />
  79.     <plugin name="xlrstats"  config="@b3/extplugins/conf/xlrstats.xml"/>
  80.     <plugin name="knifer" config="@b3/extplugins/conf/knifer.xml"/>
  81.     <plugin name="dynamiclogin" config="@b3/extplugins/conf/dynamiclogin.xml"/>
  82.     <plugin name="flagstats" config="@b3/extplugins/conf/flagstats.xml"/>
  83.     <plugin name="follow" config="@b3/extplugins/conf/follow.xml"/>
  84.     <plugin name="spree" config="@b3/extplugins/conf/plugin_spree.xml"/>
  85.     <plugin name="autoreg" config="@b3/extplugins/conf/autoreg.xml"/>
  86.  
  87. <plugin name="chatlogger" config="@b3/extplugins/conf/plugin_chatlogger.xml"/>
  88.         <plugin name="censorurt" config="@b3/extplugins/conf/plugin_censorurt.xml" />
  89.  
  90.          <!-- <plugin config="@conf/plugin_adv.xml" name="adv" /> -->      
  91.     <!-- The punkbuster plugin was not installed since punkbuster is not supported or disabled. -->
  92.         <!-- The next plugins are external, 3rd party plugins and should reside in the external_dir. Example: -->
  93.         <!-- plugin config="@b3/extplugins/conf/newplugin.xml" name="newplugin" -->
  94.  
  95.         <!-- You can add new/custom plugins to this list using the same form as above. -->
  96.     </plugins>
  97. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement