Raised This Month: $32 Target: $400
 8% 

[TF2] gScramble Team Balancer/Scrambler -- 3.0.33 4/14/2015


Post New Thread Reply   
 
Thread Tools Display Modes
BrutalGoerge
AlliedModders Donor
Join Date: Jul 2007
Old 03-03-2015 , 06:36   Re: [TF2] gScramble Team Balancer/Scrambler -- 3.0.29 3/2/2015
Reply With Quote #1431

Quote:
Originally Posted by OddworldCrash View Post
Maybe it's a plugin conflict? Have you tried running UMC on a "out of the box" sourcemod installation?

I have no problems with this plugin.
It's not a plugin conflict.
The way I have updated the code now, the only time an admin should be chosen in a force swap will be if he sets his preference to the opposite team, or if the server is filled with admins. However in the previous build, that function still wasn't exactly what I intended it to be. Now I am satisfied it works how I intend it to work
__________________
My Pluggies If you like, consider to me.

Last edited by BrutalGoerge; 03-03-2015 at 06:44.
BrutalGoerge is offline
Phaiz
AlliedModders Donor
Join Date: Feb 2014
Location: USA
Old 03-03-2015 , 08:53   Re: [TF2] gScramble Team Balancer/Scrambler -- 3.0.29 3/2/2015
Reply With Quote #1432

Quote:
Originally Posted by BrutalGoerge View Post
It's not a plugin conflict.
The way I have updated the code now, the only time an admin should be chosen in a force swap will be if he sets his preference to the opposite team, or if the server is filled with admins. However in the previous build, that function still wasn't exactly what I intended it to be. Now I am satisfied it works how I intend it to work
I will upload the latest version now.. and just for the hell of it I will also redo the cfg with the new one provided.
__________________
Phaiz is offline
Phaiz
AlliedModders Donor
Join Date: Feb 2014
Location: USA
Old 03-03-2015 , 11:15   Re: [TF2] gScramble Team Balancer/Scrambler -- 3.0.29 3/2/2015
Reply With Quote #1433

And admins are still getting auto balanced.
__________________
Phaiz is offline
Wliu
Veteran Member
Join Date: Apr 2013
Old 03-03-2015 , 15:39   Re: [TF2] gScramble Team Balancer/Scrambler -- 3.0.29 3/2/2015
Reply With Quote #1434

Now I might be missing something but looking through the source code it doesn't look like cvar_BalanceImmunity and cvar_BalanceImmunityCheck ever get used?
__________________
~Wliu
Wliu is offline
Powerlord
AlliedModders Donor
Join Date: Jun 2008
Location: Seduce Me!
Old 03-03-2015 , 16:54   Re: [TF2] gScramble Team Balancer/Scrambler -- 3.0.29 3/2/2015
Reply With Quote #1435

Quote:
Originally Posted by Wliu View Post
Now I might be missing something but looking through the source code it doesn't look like cvar_BalanceImmunity and cvar_BalanceImmunityCheck ever get used?
In gscramble/gscramble_autobalance.sp:
Code:
		new iImmunity = e_Protection:GetConVarInt(cvar_BalanceImmunity),
			bool:bAdmin = false,
			bool:bEngie = false;
		switch (iImmunity)
You did notice this plugin consists of more than one file, right? Right?
__________________
Not currently working on SourceMod plugin development.

Last edited by Powerlord; 03-03-2015 at 16:55.
Powerlord is offline
Wliu
Veteran Member
Join Date: Apr 2013
Old 03-03-2015 , 17:46   Re: [TF2] gScramble Team Balancer/Scrambler -- 3.0.29 3/2/2015
Reply With Quote #1436

Quote:
Originally Posted by Powerlord View Post
In gscramble/gscramble_autobalance.sp:
Code:
		new iImmunity = e_Protection:GetConVarInt(cvar_BalanceImmunity),
			bool:bAdmin = false,
			bool:bEngie = false;
		switch (iImmunity)
You did notice this plugin consists of more than one file, right? Right?
Ah...that might have helped ;P.
__________________
~Wliu
Wliu is offline
BrutalGoerge
AlliedModders Donor
Join Date: Jul 2007
Old 03-03-2015 , 18:42   Re: [TF2] gScramble Team Balancer/Scrambler -- 3.0.29 3/2/2015
Reply With Quote #1437

Quote:
Originally Posted by Phaiz View Post
And admins are still getting auto balanced.
I am still not able to reproduce this behavior. I tried giving myself only the the a flag, Player_Death balance still ignored me, and force-balance prioritized players ahead of me.

Like I said, force will choose an admin regardless of immunity if that's all it has to pick from, the point of the function is to solve the balance no matter what after the set period. Are you sure admins being swapped have no non admin teammates that the plugin should be choosing instead?
__________________
My Pluggies If you like, consider to me.

Last edited by BrutalGoerge; 03-03-2015 at 18:44.
BrutalGoerge is offline
Phaiz
AlliedModders Donor
Join Date: Feb 2014
Location: USA
Old 03-03-2015 , 22:12   Re: [TF2] gScramble Team Balancer/Scrambler -- 3.0.29 3/2/2015
Reply With Quote #1438

Quote:
Originally Posted by BrutalGoerge View Post
I am still not able to reproduce this behavior. I tried giving myself only the the a flag, Player_Death balance still ignored me, and force-balance prioritized players ahead of me.

Like I said, force will choose an admin regardless of immunity if that's all it has to pick from, the point of the function is to solve the balance no matter what after the set period. Are you sure admins being swapped have no non admin teammates that the plugin should be choosing instead?
I do not know why it is happening but I can assure you that the team was not full of admins or other people with immunity. Most of the time it seems to balance admins before it ever balances a non admin.
__________________
Phaiz is offline
BrutalGoerge
AlliedModders Donor
Join Date: Jul 2007
Old 03-03-2015 , 23:31   Re: [TF2] gScramble Team Balancer/Scrambler -- 3.0.29 3/2/2015
Reply With Quote #1439

These admins are verified to be flagged properly, like with the sm_who command?
Code:
 rcon sm_who jack
autokick is disabled for AnthariaJack
[SM] "AnthariaJack" is logged in as "GOERGE" with access: res

__________________
My Pluggies If you like, consider to me.

Last edited by BrutalGoerge; 03-03-2015 at 23:32.
BrutalGoerge is offline
Phaiz
AlliedModders Donor
Join Date: Feb 2014
Location: USA
Old 03-04-2015 , 00:48   Re: [TF2] gScramble Team Balancer/Scrambler -- 3.0.29 3/2/2015
Reply With Quote #1440

Quote:
Originally Posted by BrutalGoerge View Post
These admins are verified to be flagged properly, like with the sm_who command?
Code:
 rcon sm_who jack
autokick is disabled for AnthariaJack
[SM] "AnthariaJack" is logged in as "GOERGE" with access: res

Yes
__________________
Phaiz is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 18:30.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode