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

Release SourceBans++ (v1.6.4) [Updated: 2021-10-06]


Post New Thread Closed Thread   
 
Thread Tools Display Modes
Kurtan
AlliedModders Donor
Join Date: Feb 2016
Location: Sweden
Old 10-19-2016 , 19:10   Re: [RELEASE] SourceBans++ (v1.5.4.7) [Updated: 2016-04-28]
#891

Quote:
Originally Posted by schwarz View Post
hey

i have problem with spam error log

Code:
L 10/19/2016 - 15:05:00: [sb_admcfg.smx]  (line 7) Unknown group "Developer"
thanks
I also had this problem, I solved it by renaming the "Developer" group to "Devs" instead.
__________________
Kurtan is offline
CrazyHackGUT
AlliedModders Donor
Join Date: Feb 2016
Location: Izhevsk, Russia
Old 10-21-2016 , 14:51   Re: [RELEASE] SourceBans++ (v1.5.4.7) [Updated: 2016-04-28]
#892

Hi guys. We here in Russia have made fork on the basis of this. Would you like to look?

https://l4d-zone.ru/index.php
Our Github: https://github.com/CrazyHackGUT/SB_Material_Design

Last edited by CrazyHackGUT; 10-21-2016 at 15:04.
CrazyHackGUT is offline
Send a message via ICQ to CrazyHackGUT Send a message via Skype™ to CrazyHackGUT
Sarabveer
Veteran Member
Join Date: Feb 2014
Old 10-23-2016 , 16:22   Re: [RELEASE] SourceBans++ (v1.5.4.7) [Updated: 2016-04-28]
#893

Quote:
Originally Posted by CrazyHackGUT View Post
Hi guys. We here in Russia have made fork on the basis of this. Would you like to look?

https://l4d-zone.ru/index.php
Our Github: https://github.com/CrazyHackGUT/SB_Material_Design
Can you make an English Version of the theme, and pull request it on the official repo? Thanks!
__________________
Sarabveer is offline
tallanvor
Junior Member
Join Date: May 2013
Old 10-24-2016 , 00:31   Re: [RELEASE] SourceBans++ (v1.5.4.7) [Updated: 2016-04-28]
#894

Quote:
Originally Posted by Sarabveer View Post
Can you make an English Version of the theme, and pull request it on the official repo? Thanks!
Dude, this is NOT theme/style only...
This is total reconstruction of your SB 1.5.4.7.
tallanvor is offline
lugui
Senior Member
Join Date: Feb 2016
Location: GetClientAbsOrigin();
Old 10-24-2016 , 11:23   Re: [RELEASE] SourceBans++ (v1.5.4.7) [Updated: 2016-04-28]
#895

Hey. I got a problem where the sourcebans web can no longuer comunicate with the game server. I cant add admins, bans, gags or mutes =/

The server rcon ,server IP:port and the server ID is right. The server can only read the curent cache in sb_admins.cfg but it is not updating acording to what is set on sourcebans (rehash admins is activated)

Pls.. help =/

Last edited by lugui; 10-24-2016 at 11:25.
lugui is offline
PresidentEvil
AlliedModders Donor
Join Date: Jun 2012
Old 10-29-2016 , 00:52   Re: [RELEASE] SourceBans++ (v1.5.4.7) [Updated: 2016-04-28]
#896

Quote:
Also you could apply punishments to multi-targets (such as `@all`, `@ct`, `@blue`, etc...)
Multi-target punishments will not be saved in db.
Removing punishments from multi-targets will removed punishments temporary (not from db).
Allowed session (temporary) punishments and extended with length less than 30 minutes and less than DefaultTime setting.
Permanent multi-target punishments is not available.

Anyone know why it's listing session mutes/gags? I don't want it to log session mute/gags.







Code:
/**
* sourcecomms.cfg
*
* This file contains settings for the SourceComms Plugin
*/

"SourceComms"
{
	"Config"
	{
		"DefaultTime"					"1"	// default time in minutes. if < 0 -> blocking for session. Permanent (0) - is not allowed!
		"DisableUnblockImmunityCheck"	"0"		// 0, 1. If 1, player can be ungagged only by issuer admin, console or admin with special flag
												// Also, If 0 player maybe unblocked by Admin with higher immunity level then issuer admin.
												// Default value is 0
		"ConsoleImmunity"				"100"	// Immunity Level of server console. If not specified - 0.
		"MaxLength"						"0"		// Max allowed punishment length (in minutes) for admins without ADMFLAG_CUSTOM2 (p).
												// 0 disables restriction. Any value > 0 restricts permanent punishment.
		"OnlyWhiteListServers"			"0"		// Set this option to 1 to applying on players punishments only from servers listed in WhiteList and this server.
												// 0 applies on players punishments from any server.
	}

	"CommsReasons"
	{
	   //Generic menu options for if a reason isn't supplied in a block
	  //-------------------------------------------------------------//
	 //	"Reason to store in DB"			"Reason to display in menu"	//
	//-------------------------------------------------------------//
		"Obscene language"				"Obscene language"
		"Insult players"				"Insult players"
		"Admin disrespect"				"Admin disrespect"
		"Inappropriate Language"		"Inappropriate Language"
		"Spam in chat/voice"			"Spam"
		"Trading"						"Trading"
		"Other"							"Other"
		"Advertisement"					"Advertisement"
		"Played music in voice"			"Music in voice"
	}

	"CommsTimes"
	{
	   //       Times to show in duration menu			//
	  //-----------------------------------------------//
	 //	"Time in minutes"	"Time to display in menu" //
	//-----------------------------------------------//
		"-1"				"Session"		// If time < 0 -> blocking comms for player session
		"5"					"5 minutes"
		"10"				"10 minutes"
		"15"				"15 minutes"
		"30"				"30 minutes"
		"60"				"60 minutes"
		"120"				"2 hours"
		"360"				"6 hours"
		"720"				"12 hours"
		"1440"				"24 hours"
		"2880"				"2 days"
		"10080"				"7 days"
		"20160"				"2 weeks"
		"0"					"Permanent"
	}

	"ServersWhiteList"
	{
	  //-----------------------------------------//
	 //	"id"	"ServerID from sourcebans.cfg"	//
	//-----------------------------------------//
		"id"	"0"		// Web Punishments (from sourcebans web pages)
//		"id"	"3"		// for example: uncommenting this line will add server with ServerID 3 to white list.
	}
}
__________________

Last edited by PresidentEvil; 10-29-2016 at 03:25.
PresidentEvil is offline
Phaiz
AlliedModders Donor
Join Date: Feb 2014
Location: USA
Old 10-30-2016 , 16:57   Re: [RELEASE] SourceBans++ (v1.5.4.7) [Updated: 2016-04-28]
#897

Quote:
Originally Posted by PresidentEvil View Post
Anyone know why it's listing session mutes/gags? I don't want it to log session mute/gags.







Code:
/**
* sourcecomms.cfg
*
* This file contains settings for the SourceComms Plugin
*/

"SourceComms"
{
    "Config"
    {
        "DefaultTime"                    "1"    // default time in minutes. if < 0 -> blocking for session. Permanent (0) - is not allowed!
        "DisableUnblockImmunityCheck"    "0"        // 0, 1. If 1, player can be ungagged only by issuer admin, console or admin with special flag
                                                // Also, If 0 player maybe unblocked by Admin with higher immunity level then issuer admin.
                                                // Default value is 0
        "ConsoleImmunity"                "100"    // Immunity Level of server console. If not specified - 0.
        "MaxLength"                        "0"        // Max allowed punishment length (in minutes) for admins without ADMFLAG_CUSTOM2 (p).
                                                // 0 disables restriction. Any value > 0 restricts permanent punishment.
        "OnlyWhiteListServers"            "0"        // Set this option to 1 to applying on players punishments only from servers listed in WhiteList and this server.
                                                // 0 applies on players punishments from any server.
    }

    "CommsReasons"
    {
       //Generic menu options for if a reason isn't supplied in a block
      //-------------------------------------------------------------//
     //    "Reason to store in DB"            "Reason to display in menu"    //
    //-------------------------------------------------------------//
        "Obscene language"                "Obscene language"
        "Insult players"                "Insult players"
        "Admin disrespect"                "Admin disrespect"
        "Inappropriate Language"        "Inappropriate Language"
        "Spam in chat/voice"            "Spam"
        "Trading"                        "Trading"
        "Other"                            "Other"
        "Advertisement"                    "Advertisement"
        "Played music in voice"            "Music in voice"
    }

    "CommsTimes"
    {
       //       Times to show in duration menu            //
      //-----------------------------------------------//
     //    "Time in minutes"    "Time to display in menu" //
    //-----------------------------------------------//
        "-1"                "Session"        // If time < 0 -> blocking comms for player session
        "5"                    "5 minutes"
        "10"                "10 minutes"
        "15"                "15 minutes"
        "30"                "30 minutes"
        "60"                "60 minutes"
        "120"                "2 hours"
        "360"                "6 hours"
        "720"                "12 hours"
        "1440"                "24 hours"
        "2880"                "2 days"
        "10080"                "7 days"
        "20160"                "2 weeks"
        "0"                    "Permanent"
    }

    "ServersWhiteList"
    {
      //-----------------------------------------//
     //    "id"    "ServerID from sourcebans.cfg"    //
    //-----------------------------------------//
        "id"    "0"        // Web Punishments (from sourcebans web pages)
//        "id"    "3"        // for example: uncommenting this line will add server with ServerID 3 to white list.
    }
}
"Session" mutes are what happen when you use SM to mute and not SB. It's also why it doesn't show the admin who issue it, and instead says CONSOLE.
__________________
Phaiz is offline
PresidentEvil
AlliedModders Donor
Join Date: Jun 2012
Old 10-30-2016 , 19:00   Re: [RELEASE] SourceBans++ (v1.5.4.7) [Updated: 2016-04-28]
#898

Quote:
Originally Posted by Phaiz View Post
"Session" mutes are what happen when you use SM to mute and not SB. It's also why it doesn't show the admin who issue it, and instead says CONSOLE.
how do I prevent it?

the only plugins capable of muting in the server are basecomm and sourcecomms
__________________
PresidentEvil is offline
Phaiz
AlliedModders Donor
Join Date: Feb 2014
Location: USA
Old 11-01-2016 , 20:30   Re: [RELEASE] SourceBans++ (v1.5.4.7) [Updated: 2016-04-28]
#899

Quote:
Originally Posted by PresidentEvil View Post
how do I prevent it?

the only plugins capable of muting in the server are basecomm and sourcecomms
Use the SB menu that's in the /admin menu instead of the mute/gag under player options. You could also edit basecomm and remove it entirely.
__________________
Phaiz is offline
PresidentEvil
AlliedModders Donor
Join Date: Jun 2012
Old 11-01-2016 , 20:41   Re: [RELEASE] SourceBans++ (v1.5.4.7) [Updated: 2016-04-28]
#900

Quote:
Originally Posted by Phaiz View Post
Use the SB menu that's in the /admin menu instead of the mute/gag under player options. You could also edit basecomm and remove it entirely.
can you tell me what lines to edit
__________________
PresidentEvil is offline
Closed Thread



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 20:54.


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