In our support boards we aim to provide support for the B3 core in its current state. Older releases of B3 are NOT supported. Check our front page for the latest version. You may post feature requests in our General Discussion board. Modifications and Hacks of the core B3 code are NOT supported.
Before you ask for support: [ Read the Support Instructions ] - More info: [ Full Support Disclaimer ]

You are here: Big Brother Bot ForumSupport ForumsInstallation Support (Moderator: MordyT)Problem at Starting Plugins
Pages: [1]   Go Down
  Print  
Author Topic: Problem at Starting Plugins  (Read 619 times) Bookmark and Share
Newbie
*
OS: Windows
Type: Home user
Gameservers: CoD4
Posts: 7
Offline Offline
« on: October 16, 2010, 04:30:38 PM »

Ok 1st the info:
OS: Windows 7 Ultimate
Phyton Version: 2.7
Game: Im trying to get it to work with the new cod6(mw2) dedicated server(alterIWnet)

So i start the b3_run.py
all goes well until Starting plugins
it goes like:
Starting Plugins:..............  then cmd window closes

Heres Log:
Code:
101017 02:24:07 WARNING CoD2 version 1.0 has known limitations on Authentication! B3 will not work properly!
101017 02:24:08 WARNING AdminPlugin: could not get command_prefix_big, using default

And thats it no idea what to do....
Logged

Senior Dev.
*
OS: Linux
Type: Home user
Posts: 3484
Offline Offline
WWW
Support Specialty: B3-Core, UrT/SmG/BFBC2 parsers, Plugin development
« Reply #1 on: October 16, 2010, 06:19:42 PM »

post your b3.xml (remove passwords)
and also post your b3.log (there might be error messages here as well)
Logged

Newbie
*
OS: Windows
Type: Home user
Gameservers: CoD4
Posts: 7
Offline Offline
« Reply #2 on: October 17, 2010, 12:47:06 AM »

I alredy posted my b3.log in the first post...
Heres my config...
Code:
<?xml version='1.0'?>
<!--
 This file is generated by the B3 setup Procedure.
 If you want to regenerate this file and make sure the format is
 correct, you can invoke the setup procedure with the
 command : b3_run -s b3.xml

 This is B3 main config file (the one you specify when you run B3 with the
 command : b3_run -c b3.xml)

 For any change made in this config file, you have to restart the bot.
 Whenever you can specify a file/directory path, the following shortcuts
 can be used :
  @b3 : the folder where B3 code is installed in
  @conf : the folder containing this config file
 -->
<configuration>
<settings name="b3">
<!-- Define your game: cod/cod2/cod4/cod5/iourt41/etpro/wop/smg/bfbc2/moh -->
<set name="parser">cod6</set>
<!-- Your database info: [mysql]://[db-user]:[db-password]@[db-server[:port]]/[db-name] -->
<set name="database">mysql://root:********@localhost/b3</set>
<!-- Name of the bot -->
<set name="bot_name">B3</set>
<!-- Ingame messages are prefixed with this code, you can use colorcodes -->
<set name="bot_prefix">^0(^2b3^0)^7:</set>
<set name="time_format">%I:%M%p %Z %m/%d/%y</set>
<!-- The timezone your bot is in -->
<set name="time_zone">GMT+2</set>
<!-- How much detail in the logfile: 9 = verbose, 10 = debug, 21 = bot, 22 = console -->
<set name="log_level">22</set>
<!-- Name of the logfile the bot will generate -->
<set name="logfile">b3.log</set>
</settings>
<settings name="server">
<!-- The RCON pass of your gameserver -->
<set name="rcon_password">**********</set>
<!-- The port the server is running on -->
<set name="port">28961</set>
<!-- The gameserver generates a logfile, put the path and name here -->
<set name="game_log">C:\alterIWnet\AlterIWNet\Server1\main\games_mp.log</set>
<!-- The public IP your gameserver is residing on -->
<set name="public_ip">93.104.41.10</set>
<!-- The IP the bot can use to send RCON commands to (127.0.0.1 when on the same box) -->
<set name="rcon_ip">127.0.0.1</set>
<!-- Is the gameserver running PunkBuster Anticheat: on/off -->
<set name="punkbuster">off</set>
</settings>
<settings name="autodoc">
<!-- Autodoc will generate a user documentation for all B3 commands -->
<!-- by default, a html documentation is created in your conf folder -->

<!-- html, htmltable or xml -->
<set name="type">html</set>
<!-- if you want to exclude commands reserved for higher levels -->
<set name="maxlevel">100</set>
<!-- Destination can be a file or a ftp url -->
<set name="destination">test_doc.html</set>
</settings>
<settings name="messages">
<set name="kicked_by">%s^7 was kicked by %s^7 %s</set>
<set name="kicked">%s^7 was kicked %s</set>
<set name="banned_by">%s^7 was banned by %s^7 %s</set>
<set name="banned">%s^7 was banned %s</set>
<set name="temp_banned_by">%s^7 was temp banned by %s^7 for %s^7 %s</set>
<set name="temp_banned">%s^7 was temp banned for %s^7 %s</set>
<set name="unbanned_by">%s^7 was un-banned by %s^7 %s</set>
<set name="unbanned">%s^7 was un-banned %s</set>
</settings>
<settings name="plugins">
<set name="external_dir">@b3/extplugins</set>
</settings>
<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. -->

<plugin config="@conf/plugin_censor.xml" name="censor" />
<plugin config="@conf/plugin_spamcontrol.xml" name="spamcontrol" />
        <plugin config="@conf/plugin_admin.xml" name="admin" />
<plugin config="@conf/plugin_tk.xml" name="tk" />
<plugin config="@conf/plugin_stats.xml" name="stats" />
<plugin config="@conf/plugin_pingwatch.xml" name="pingwatch" />
<plugin config="@conf/plugin_adv.xml" name="adv" />
<plugin config="@conf/plugin_status.xml" name="status" />
<plugin config="@conf/plugin_welcome.xml" name="welcome" />
<!-- The punkbuster plugin was not installed since punkbuster is not supported or disabled. -->
<!-- The next plugins are external, 3rd party plugins and should reside in the external_dir. Example: -->
<!-- plugin config="@b3/extplugins/conf/newplugin.xml" name="newplugin" -->

<plugin config="@b3/extplugins/conf/xlrstats.xml" name="xlrstats" />
<!-- You can add new/custom plugins to this list using the same form as above. -->
</plugins>
</configuration>
Logged
[ www.xlrstats.com ]
Project Lead
*
OS: Linux
Type: Owner dedicated server(s)
Gameservers: CoD, CoD2, CoD5, UrT
Posts: 2022
Offline Offline
WWW
Support Specialty: B3-Core, CoD/UrT/WoP/ETPro parsers, Plugin development
« Reply #3 on: October 17, 2010, 01:14:44 AM »

At least I found a minor bug (unrelated to your error tho) in cod2.py inheritance.Leading to this message:
Code:
01017 02:24:07 WARNING CoD2 version 1.0 has known limitations on Authentication! B3 will not work properly!

You can safely ignore that message when not running cod2.

Those two lines of log is not enough. Restart the bot and post the whole log.
« Last Edit: October 17, 2010, 01:19:26 AM by xlr8or » Logged

Newbie
*
OS: Windows
Type: Home user
Gameservers: CoD4
Posts: 7
Offline Offline
« Reply #4 on: October 17, 2010, 02:29:47 AM »

Ok i forgot to check the log files, checked only the .txt one so heres the log1 others are clean

Code:
101017 12:27:11 WARNING RCON: ERROR reading: No readable socket
101017 12:27:12 WARNING RCON: ERROR reading: No readable socket
101017 12:27:12 ERROR RCON: too much tries. Abording (status)
Logged
Senior Dev.
*
OS: Linux
Type: Home user
Posts: 3484
Offline Offline
WWW
Support Specialty: B3-Core, UrT/SmG/BFBC2 parsers, Plugin development
« Reply #5 on: October 17, 2010, 03:17:49 AM »

this is not much of the context.

To provide us enough info, restart the bot and post the full b3.log
Logged

Newbie
*
OS: Windows
Type: Home user
Gameservers: CoD4
Posts: 7
Offline Offline
« Reply #6 on: October 17, 2010, 03:37:39 AM »

What do you mean by restarting totaly reinstalling? i runned it again nothing changes....
Logged
Senior Dev.
*
OS: Linux
Type: Home user
Posts: 3484
Offline Offline
WWW
Support Specialty: B3-Core, UrT/SmG/BFBC2 parsers, Plugin development
« Reply #7 on: October 17, 2010, 08:01:39 AM »

I mean we need to see the content of your b3.log file showing the bot starting and also showing your issue
Logged

Newbie
*
OS: Windows
Type: Home user
Gameservers: CoD4
Posts: 7
Offline Offline
« Reply #8 on: October 17, 2010, 08:50:09 AM »

I alredy posted the log....
Heres the stuff from cmd:
Code:
Starting www.bigbrotherbot.net (b3) v1.4.0 [nt] (Daniel)

Using config file: b3\conf\b3.xml
Using external plugin directory: C:\alterIWnet\B3FAGGOT\b3\extplugins
Activating log   : b3.log
Connecting to DB : OK
Using Gamelog    : C:\alterIWnet\AlterIWNet\Server1\main\games_mp.log
Testing RCON     : OK
Loading Events   : 32 events loaded
Loading Plugins  : ........... (11)
Here is says:
Starting Plugins :............ then cmd closes

Ye i know dirrectory B3FAGGOT
yust got a little angry caus so many errors x.x  yust ignore it
Logged
[ www.xlrstats.com ]
Project Lead
*
OS: Linux
Type: Owner dedicated server(s)
Gameservers: CoD, CoD2, CoD5, UrT
Posts: 2022
Offline Offline
WWW
Support Specialty: B3-Core, CoD/UrT/WoP/ETPro parsers, Plugin development
« Reply #9 on: October 17, 2010, 09:37:20 AM »

Okay, let´s try a different approach.

In your b3.xml change this line:
Code:
<set name="log_level">22</set>
to this:
Code:
<set name="log_level">9</set>

Then start the bot and attach b3.log to this post. That should give us more information about why it is not running.
(The attach option is in the 'Aditional Options' when replying to this post)
Logged

Newbie
*
OS: Windows
Type: Home user
Gameservers: CoD4
Posts: 7
Offline Offline
« Reply #10 on: October 17, 2010, 09:47:36 AM »

WOW ty didnt have a clue that would hide all the erros.
Anyway heres the log. Il start checking it now...

I didnt attach it before becouse i though it would be easier to read it...

Ty for helping.

[attachment deleted by admin]
Logged
[ www.xlrstats.com ]
Project Lead
*
OS: Linux
Type: Owner dedicated server(s)
Gameservers: CoD, CoD2, CoD5, UrT
Posts: 2022
Offline Offline
WWW
Support Specialty: B3-Core, CoD/UrT/WoP/ETPro parsers, Plugin development
« Reply #11 on: October 17, 2010, 09:59:20 AM »

Yes, this was a mistake of mine that I unfortunately introduced in the latest release in the xlrstats plugin.

In xlrstats.xml make sure you put something in this spot:
Code:
<set name="webfronturl">http://www.my site.com/xlrstats</set>

If you leave it empty it will fail the bot to start.

It will be fixed in the next package.
Logged

Newbie
*
OS: Windows
Type: Home user
Gameservers: CoD4
Posts: 7
Offline Offline
« Reply #12 on: October 17, 2010, 10:16:34 AM »

Thank you very much. Both of you for helping. Its working.

Logged
Tags:
Pages: [1]   Go Up
  Print  
 
Jump to:  


Rate this page +1 at Google Search


SimplePortal 2.3.1 © 2008-2009, SimplePortal