View Single Post
Author Message
PresidentEvil
AlliedModders Donor
Join Date: Jun 2012
Old 08-24-2012 , 23:42   SourceBans not working with CSGO
Reply With Quote #1

my sb: http://slayersgaming.com/sb/index.php?p=home

these are the steps I took:


1. downloaded and dropped the game_upload folder (http://code.google.com/p/sourcebans/downloads/list) into the csgo folder

2. edited sourcebans.cfg

copied over from my working css server, only changed ServerId from "2" to "3"

Code:
/**
* sourcebans.cfg
*
* This file contains settings for the SourceBans Source Server Plugin
* @author SteamFriends Development Team
* @version 0.0.0.$Rev: 74 $
* @copyright SteamFriends (www.steamfriends.com)
* @package SourceBans
*/

"SourceBans"
{
	"Config"
	{
		// Website address to tell where the player to go for unban, etc
		"Website"			"www.SlayersGaming.com"

		// Allow or disallow admins access to addban command
		"Addban"			"1"

		// Allow or disallow admins access to unban command
		"Unban"				"1"
        
        	// The Tableprefix you set while installing the webpanel. (default: "sb")
		"DatabasePrefix"	"sb"

		// How many seconds to wait before retrying when a players ban fails to be checked. Min = 15.0 Max = 60.0
		"RetryTime"			"45.0"
		
		// How often should we process the failed ban queue in minutes
		"ProcessQueueTime"	"5"

		// Should the plugin automaticaly add the server to sourcebans 
		// (servers without -ip being set on startup need this set to 0)
		"AutoAddServer"		"1"

		// Enable backing up config files after getting admins from database (1 = enabled, 0 = disabled)
		"BackupConfigs"	"1"

		// Enable admin part of the plugin (1 = enabled, 0 = disabled)
		"EnableAdmins"	"1"
        
		// Require the admin to login once into website
		"RequireSiteLogin"	"0"

		// This is the ID of this server (Check in the admin panel -> servers to find the ID of this server)
		"ServerID"		"3"
	}

	/*
	 * Generic menu options for if a reason isn't supplied in a ban
	 * Without a supplied reason the ban will never be written to the database
	 */
	"BanReasons"
	{
		"Hacking"	"Hacking"
		"Exploit"	"General Exploit of Game/Map/Server"
		"TK"	"Team Killing"
		"TF"	"Team Flashing"
		"CommSpam"	"Spamming Mic/Chat"
		"BadSpray"	"Inappropriate Spray"
		"BadLang"	"Inappropriate Language"
		"BadName"	"Inappropriate Name"
		"IgnoreAdmin"	"Ignoring Admins"
        	"Stacking"	"Team Stacking"
		"Own Reason"	"Own Reason"
	}
	
	/*
	 * Submenu options for when "Hacking" is selected
	 * If "Hacking" is removed from the menu above this will not be accessable
	 */
	"HackingReasons"
	{
		"Aimbot"	"Aimbot"
		"Antirecoil"	"Anti Recoil"
		"Wallhack"	"Wallhack"
		"Spinhack"	"Spinhack"
		"Speedhack"	"Speedhack"
		"Multi-Hack"	"Multi-Hack"
		"No Smoke"	"No Smoke"
		"No Flash"	"No Flash"
	}
}

3. edited databases.cfg and added:

Code:
"sourcebans"
	{
		"driver"		"mysql"
		"host"			"98.130.0.121"	// The host where your mysql server is located
		"database"		"C368969_sb"	// The name of the database
		"user"			"C368969_admin"	// The name of the user that the plugin should use to connect
		"pass"			"*********"	// The password for this user
	}
which is exactly how it was in my working CSS server's databases.cfg

4.

in my sb panel, went to mods > add a new mod

and added the following and saved



(i followed the instructions here: http://forums.alliedmods.net/showthread.php?t=193927)

and edited the server details:



yet it still shows "error connecting"
__________________

Last edited by PresidentEvil; 08-24-2012 at 23:44.
PresidentEvil is offline