Renegade Public Forums
C&C: Renegade --> Dying since 2003™, resurrected in 2024!
Home » Tiberian Technologies / Blackhand Studios » Tiberian Technologies Forum » BRenBot 1.53.11
BRenBot 1.53.11 [message #463211] Wed, 29 February 2012 12:42 Go to next message
danpaul88 is currently offline  danpaul88
Messages: 5795
Registered: June 2004
Location: England
Karma: 0
General (5 Stars)
** SSGM 4.0 support requires server side scripts.dll compiled from TT revision 4076 or higher **

Changes since 1.53.10
- Fix some quote replacement issues in logging related functionality
- Fix problem with case sensitivity when verifying auth passwords
- Removed redundant RG related function is_serial_banned from modules.pm
- Fixed autoannounce command calling an old, removed function
- Fixed IsHalfMod(), IsMod() and IsAdmin() functions in modules.pm
- Modified map settings announcement to not include the donation limit when it is set to zero or the donations module is disabled
- Fixed a crash when kicking a banned player who joins the server


Existing plugins might or might not work with this, let me know if you have any problems with them.


http://steamsignature.com/card/1/76561197975867233.png
Re: BRenBot 1.53.11 [message #463221 is a reply to message #463211] Wed, 29 February 2012 14:08 Go to previous messageGo to next message
roszek is currently offline  roszek
Messages: 296
Registered: June 2010
Karma: 0
Recruit
Big Ups

[Updated on: Wed, 29 February 2012 14:16]

Report message to a moderator

Re: BRenBot 1.53.11 [message #463235 is a reply to message #463211] Wed, 29 February 2012 16:43 Go to previous messageGo to next message
Ethenal is currently offline  Ethenal
Messages: 2532
Registered: January 2007
Location: US of A
Karma: 0
General (2 Stars)

Looks great, sir! Thanks for supporting BR after all these long years! Big Grin

-TLS-DJ-EYE-K wrote on Mon, 18 March 2013 07:29

Instead of showing us that u aren't more inteligent than a Toast, maybe you should start becomming good in renegade Thumbs Up

Re: BRenBot 1.53.11 [message #463238 is a reply to message #463211] Wed, 29 February 2012 16:54 Go to previous messageGo to next message
iRANian is currently offline  iRANian
Messages: 4299
Registered: April 2011
Karma: 0
General (4 Stars)
Thanks for the release. I will test this out with the Area54 owner in the future.

Long time and well respected Renegade community member, programmer, modder and tester.

Scripts 4.0 private beta tester since May 2011.

My Renegade server plugins releases
Re: BRenBot 1.53.11 [message #463440 is a reply to message #463211] Fri, 02 March 2012 03:49 Go to previous messageGo to next message
triattack is currently offline  triattack
Messages: 14
Registered: May 2011
Karma: 0
Recruit
thanx for the update
Re: BRenBot 1.53.11 [message #463444 is a reply to message #463211] Fri, 02 March 2012 04:59 Go to previous messageGo to next message
zunnie is currently offline  zunnie
Messages: 2959
Registered: September 2003
Location: Netherlands
Karma: 0
General (2 Stars)

Nice work, works like a charm Smile
Thanks Smile


https://multiplayerforums.com/uploads/monthly_2018_03/TCW2_Signature.png.6236a0dbc6e1e53472a18fe8cd15e47b.png
Re: BRenBot 1.53.11 [message #463554 is a reply to message #463211] Sat, 03 March 2012 15:28 Go to previous messageGo to next message
Gen_Blacky is currently offline  Gen_Blacky
Messages: 3250
Registered: September 2006
Karma: 1
General (3 Stars)
I get this error when loading some plugins with build 11 i haven't seen it in build 10.

Can't use string ("0") as a HASH ref while "strict refs" in use at plugin.pm lin
e 285.
=== 4592 === Sessions were started, but POE::Kernel's run() method was never
called to execute them.  This usually happens because an error
occurred before POE::Kernel->run() could be called.  Please fix
any errors above this notice, and be sure that POE::Kernel->run()
is called.  See documentation for POE::Kernel's run() method for
another way to disable this warning.


http://s18.postimage.org/jc6qbn4k9/bricks3.png
Re: BRenBot 1.53.11 [message #463639 is a reply to message #463211] Mon, 05 March 2012 10:33 Go to previous messageGo to next message
danpaul88 is currently offline  danpaul88
Messages: 5795
Registered: June 2004
Location: England
Karma: 0
General (5 Stars)
Looking at the code suggests you might have a malformed XML config file for the problematic plugin. Can you post (or PM) the XML file for whichever plugin is causing the problem?

http://steamsignature.com/card/1/76561197975867233.png
Re: BRenBot 1.53.11 [message #463647 is a reply to message #463211] Mon, 05 March 2012 13:54 Go to previous messageGo to next message
Gen_Blacky is currently offline  Gen_Blacky
Messages: 3250
Registered: September 2006
Karma: 1
General (3 Stars)
Made a test plugin to make sure there was nothing else causing problems.

Problem is caused by the xml config settings.

<config>
<cvar name="test" value="1"/>
</config>

Not sure why this is causing the problem and not in other plugins.


[13:34:17] Loading plugin TEST... Use of tied on a handle without * is deprecate
d at XML/Parser/Expat.pm line 447.
Can't use string ("1") as a HASH ref while "strict refs" in use at plugin.pm lin
e 285.
=== 5272 === Sessions were started, but POE::Kernel's run() method was never
called to execute them.  This usually happens because an error
occurred before POE::Kernel->run() could be called.  Please fix
any errors above this notice, and be sure that POE::Kernel->run()
is called.  See documentation for POE::Kernel's run() method for
another way to disable this warning.



#TEST.pm

package TEST;

use POE;
use plugin;

our $plugin_name;
our %config;

our %additional_events =
(

);

sub start
{
	my ( $session, $heap, $args ) = @_[ SESSION, HEAP, ARG0 ];
	my $kernel = $_[KERNEL];
	
	if ( $config{'test'} == 1 ) 
	{
		print ( "weeeeeeeeeee\n" );
	}
}

sub stop
{
	my ( $session, $heap, $args ) = @_[ SESSION, HEAP, ARG0 ];
	my $kernel = $_[KERNEL];
}

1;





#TEST.xml

<?xml version="1.0" ?>

<plugin name="TEST">
  <events>
  </events>
  <config>
	 <cvar name="test" value="1"/>
  </config>
</plugin>


http://s18.postimage.org/jc6qbn4k9/bricks3.png

[Updated on: Mon, 05 March 2012 16:30]

Report message to a moderator

Re: BRenBot 1.53.11 [message #463648 is a reply to message #463211] Mon, 05 March 2012 14:19 Go to previous messageGo to next message
iRANian is currently offline  iRANian
Messages: 4299
Registered: April 2011
Karma: 0
General (4 Stars)
We have the bansystem.dll SSGM plugin enabled to get !qkick and !ban working, but if a person gets banned and we use !delban to delete the ban, the player is still banned, apparently because the info is still logged in banList.tsv (the file that bansystem.dll uses to log bans).

Long time and well respected Renegade community member, programmer, modder and tester.

Scripts 4.0 private beta tester since May 2011.

My Renegade server plugins releases
Re: BRenBot 1.53.11 [message #463659 is a reply to message #463648] Mon, 05 March 2012 16:22 Go to previous messageGo to next message
T0RN is currently offline  T0RN
Messages: 293
Registered: January 2006
Location: Lunatic HQ
Karma: 0
Recruit
iRANian wrote on Mon, 05 March 2012 16:19

We have the bansystem.dll SSGM plugin enabled to get !qkick and !ban working, but if a person gets banned and we use !delban to delete the ban, the player is still banned, apparently because the info is still logged in banList.tsv (the file that bansystem.dll uses to log bans).

Yeah, I have the same problem, I have to manually delete them from the tsv file
Re: BRenBot 1.53.11 [message #463683 is a reply to message #463211] Tue, 06 March 2012 03:22 Go to previous messageGo to next message
zunnie is currently offline  zunnie
Messages: 2959
Registered: September 2003
Location: Netherlands
Karma: 0
General (2 Stars)

I think the teamchange command is also bugged, i used it earlier and it switched two random guys as well :/

https://multiplayerforums.com/uploads/monthly_2018_03/TCW2_Signature.png.6236a0dbc6e1e53472a18fe8cd15e47b.png
Re: BRenBot 1.53.11 [message #463691 is a reply to message #463211] Tue, 06 March 2012 06:44 Go to previous messageGo to next message
danpaul88 is currently offline  danpaul88
Messages: 5795
Registered: June 2004
Location: England
Karma: 0
General (5 Stars)
Do you have auto-balance turned on? In the first few minutes of a map if auto-balance is enabled BRenBot will try to keep the teams even by swapping players around.




EDIT;
As for banlist.tsv, I was unaware of its existence when I originally coded the support for the SSGM 4.0 banning system and assumed it would simply use the existing allow console command to un-ban players. First I heard of it was last week when Stealtheye told me about it.


http://steamsignature.com/card/1/76561197975867233.png

[Updated on: Tue, 06 March 2012 06:46]

Report message to a moderator

Re: BRenBot 1.53.11 [message #463694 is a reply to message #463211] Tue, 06 March 2012 06:52 Go to previous messageGo to next message
zunnie is currently offline  zunnie
Messages: 2959
Registered: September 2003
Location: Netherlands
Karma: 0
General (2 Stars)

Hmm i'm not sure but i just tested it on myself now again with 2 players in the server. Only me got switched this time, i made sure autobalance is off now.
I guess its alright then after all Smile


https://multiplayerforums.com/uploads/monthly_2018_03/TCW2_Signature.png.6236a0dbc6e1e53472a18fe8cd15e47b.png
Re: BRenBot 1.53.11 [message #463706 is a reply to message #463211] Tue, 06 March 2012 08:25 Go to previous messageGo to next message
zunnie is currently offline  zunnie
Messages: 2959
Registered: September 2003
Location: Netherlands
Karma: 0
General (2 Stars)

[16:23:58] <%UltraBot> 04Desperado: Character: Nod Stealth Black Hand Health: 66/200 Armor: 0/100
[16:23:58] <%UltraBot> 04Kills: Vehicle Kills: 1 Building Kills: Deaths: 1
[16:23:58] <%UltraBot> 04Vehicle: Nod Stealth Tank Health: 200/200 Armor: 187/200

The guys kills are not seen by the bot, deaths work though.


https://multiplayerforums.com/uploads/monthly_2018_03/TCW2_Signature.png.6236a0dbc6e1e53472a18fe8cd15e47b.png
Re: BRenBot 1.53.11 [message #463719 is a reply to message #463211] Tue, 06 March 2012 10:37 Go to previous messageGo to next message
danpaul88 is currently offline  danpaul88
Messages: 5795
Registered: June 2004
Location: England
Karma: 0
General (5 Stars)
Sounds like the format of the gamelog messages might have changed since SSGM 2.0.2 then... they were supposed to be compatible. Will need some samples of gamelog output of kill strings to look into that one.

http://steamsignature.com/card/1/76561197975867233.png
Re: BRenBot 1.53.11 [message #463766 is a reply to message #463211] Tue, 06 March 2012 16:35 Go to previous messageGo to next message
Gen_Blacky is currently offline  Gen_Blacky
Messages: 3250
Registered: September 2006
Karma: 1
General (3 Stars)
Danpual can you add a plugin function to get a list of irc users.

return %adminChannelUsers; and %publicChannelUsers; hash.

or change them to our so we call it from outside brIRC.


http://s18.postimage.org/jc6qbn4k9/bricks3.png
Re: BRenBot 1.53.11 [message #463796 is a reply to message #463211] Wed, 07 March 2012 04:52 Go to previous messageGo to next message
zunnie is currently offline  zunnie
Messages: 2959
Registered: September 2003
Location: Netherlands
Karma: 0
General (2 Stars)

I dont think Protected Nicknames are working, we had a few impersonations and they were not kicked from the server.
They did not get mod powers though, just not kicked.


https://multiplayerforums.com/uploads/monthly_2018_03/TCW2_Signature.png.6236a0dbc6e1e53472a18fe8cd15e47b.png
Re: BRenBot 1.53.11 [message #463798 is a reply to message #463211] Wed, 07 March 2012 05:00 Go to previous messageGo to next message
iRANian is currently offline  iRANian
Messages: 4299
Registered: April 2011
Karma: 0
General (4 Stars)
Yeah kicking doesn't seem to work from time to time, I don't know why.

Long time and well respected Renegade community member, programmer, modder and tester.

Scripts 4.0 private beta tester since May 2011.

My Renegade server plugins releases
Re: BRenBot 1.53.11 [message #463802 is a reply to message #463211] Wed, 07 March 2012 05:52 Go to previous messageGo to next message
danpaul88 is currently offline  danpaul88
Messages: 5795
Registered: June 2004
Location: England
Karma: 0
General (5 Stars)
Does BRenBot say it has kicked them from the server, but they don't actually get kicked? If so that could be a problem with the SSGM 4.0 bansystem.dll since that now handles the kick console commands. Check renlog to see if there was any response to the kick command from the FDS... (renlog is still created in SSGM, under a subfolder along the lines of FDS\Renegade\FDS\somethingorother\renlog_00000.txt)

http://steamsignature.com/card/1/76561197975867233.png
Re: BRenBot 1.53.11 [message #463805 is a reply to message #463211] Wed, 07 March 2012 05:58 Go to previous messageGo to next message
iRANian is currently offline  iRANian
Messages: 4299
Registered: April 2011
Karma: 0
General (4 Stars)
Okay we'll do that next time it happens.

Long time and well respected Renegade community member, programmer, modder and tester.

Scripts 4.0 private beta tester since May 2011.

My Renegade server plugins releases
Re: BRenBot 1.53.11 [message #463807 is a reply to message #463211] Wed, 07 March 2012 06:00 Go to previous messageGo to next message
zunnie is currently offline  zunnie
Messages: 2959
Registered: September 2003
Location: Netherlands
Karma: 0
General (2 Stars)

hm, i disabled bansystem.dll plugin... :/

https://multiplayerforums.com/uploads/monthly_2018_03/TCW2_Signature.png.6236a0dbc6e1e53472a18fe8cd15e47b.png
Re: BRenBot 1.53.11 [message #463809 is a reply to message #463211] Wed, 07 March 2012 06:16 Go to previous messageGo to next message
zunnie is currently offline  zunnie
Messages: 2959
Registered: September 2003
Location: Netherlands
Karma: 0
General (2 Stars)

edit nvm Very Happy

https://multiplayerforums.com/uploads/monthly_2018_03/TCW2_Signature.png.6236a0dbc6e1e53472a18fe8cd15e47b.png

[Updated on: Wed, 07 March 2012 06:17]

Report message to a moderator

Re: BRenBot 1.53.11 [message #463813 is a reply to message #463807] Wed, 07 March 2012 06:43 Go to previous messageGo to next message
danpaul88 is currently offline  danpaul88
Messages: 5795
Registered: June 2004
Location: England
Karma: 0
General (5 Stars)
zunnie wrote on Wed, 07 March 2012 13:00

hm, i disabled bansystem.dll plugin... :/


Not a good idea, the original kick console command has been disabled in SSGM 4.0 as far as I understand it, so without bansystem.dll you won't be able to kick anyone from your server at all Very Happy


http://steamsignature.com/card/1/76561197975867233.png
Re: BRenBot 1.53.11 [message #463816 is a reply to message #463211] Wed, 07 March 2012 07:00 Go to previous messageGo to previous message
zunnie is currently offline  zunnie
Messages: 2959
Registered: September 2003
Location: Netherlands
Karma: 0
General (2 Stars)

Hm yea i figured that out just now LOL.
Enabled it again :/


https://multiplayerforums.com/uploads/monthly_2018_03/TCW2_Signature.png.6236a0dbc6e1e53472a18fe8cd15e47b.png
Previous Topic: TT updater issue(s)
Next Topic: Vehicle bug
Goto Forum:
  


Current Time: Fri Apr 19 16:47:03 MST 2024

Total time taken to generate the page: 0.01201 seconds