TF2 Fun Commands issue

Post Reply
Stuffing
New to forums
New to forums
Posts: 8
https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
Joined: Mon Jul 01, 2013 7:55 am

TF2 Fun Commands issue

Post by Stuffing »

I'm having an issue providing a player with a command..

sm_colorme

I have in my admin_groups.cfg the group able to access the command, however he still is unable to use the command.

Also in my server.cfg I have sm_selfcolorize enabled so I'm having no luck with being certain what it is.

Addon: http://forums.alliedmods.net/showthread.php?t=75520

Below is my groups.

Code: Select all

Groups
{
	/**
	 * Allowed properties for a group:
	 *
	 *   "flags"           - Flag string.
	 *   "immunity"        - Immunity level number, or a group name.
	 *						 If the group name is a number, prepend it with an 
	 *						 '@' symbol similar to admins_simple.ini.  Users 
	 *						 will only inherit the level number if it's higher 
	 *						 than their current value.
	 */
	"Default"
	{
		"immunity"		"1"
		
		"Overrides"
		{
	        "sm_god" "deny" //Do not let them use god
			"sm_resizemyhead" "deny" //Do not let them resize their head.
			"sm_aia_all" "deny" //Do not let them set infinite ammo.
			"sm_aia" "deny" //Do not let them use infinite ammo.
		}
        }

	
	"Bronze Donator"
	{
	    "flags"			"aq"	//reservation
	    "immunity"		"1"	//low immunity value
		
		"Overrides"
		{
			"sm_aia" "allow" //Let them use infinite ammo
		    "sm_resizemyhead" "allow" //Let them resize their head
			"@CSDM"		"deny"	//deny any commands from the CSDM group
			"sm_colorme" "allow" // Let them color themselves
		}
		
	}
	"Silver Donator"
	{
	   "flags"			"ap"	//reservation
	   "immunity"		"1"	//low immunity value
	   
	   "Overrides"
	   {
		   "sm_aia" "allow" //Let them use infinite ammo
	       "sm_glowme" "allow" //Let them use sm_glowme
           "sm_colorize" allow" //Let them color themselves
		   "sm_jetpack" "allow"	//Let them use the jetpack
		   "@CSDM"		"deny"	//deny any commands from the CSDM group
		   "sm_resizemyhead" "allow" //Let them resize their head
		   "sm_resizeme" "allow" //Let them resize their body
		}
	}
	"Gold Donator"
	{
		"flags"			"acp"	//reservation, generic admin, kick
		"immunity"		"1"	//low immunity value

		"Overrides"
		{
			"sm_aia" "allow" //Let them use infinite ammo
			"sm_glowme"	"allow"	//Let them use sm_glowme
			"sm_jetpack" "allow"	//Let them use the jetpack
			"sm_resizemyhead" "allow" //Let them resize their head
			"sm_resizeme" "allow" //Let them resize their body
			"@CSDM"		"deny"	//deny any commands from the CSDM group
			"sm_noclipme" "allow" //Let them noclip themselves
			"sm_colorize" "allow" //Let them color themselves
			"sm_god" "allow" //Let them god themselves
		}
	}
	
	"Basic Admin"
	{
		"flags"			"abc"	//reservation, generic admin, kick
		"immunity"		"2"	//low immunity value

		"Overrides"
		{
			"sm_glowme"	"deny"	//Let them use sm_glowme
			"sm_jetpack" "deny"	//Let them use the jetpack
			"sm_resizemyhead" "deny" //Let them resize their head
			"sm_resizeme" "deny" //Let them resize their body
			"@CSDM"		"deny"	//deny any commands from the CSDM group
			"sm_noclipme" "allow" //Let them noclip themselves
			"sm_colorize" "deny" //Let them color themselves
			"sm_god" "deny" //Let them god themselves
			"sm_resize" "deny" //Let them color themselves
			"sm_resizehead" "deny" //Let them god themselves
			"sm_evilglow" "deny" //Let them god themselves
		}
	}
	
	"Almost Admin"
	{
	    "flags"         "abcdef"
        "immunity"      "35" //less moderate immunity value
  
        "Overried"
        {
			"sm_glowme"	"deny"	//Let them use sm_glowme
			"sm_jetpack" "deny"	//Let them use the jetpack
			"sm_resizemyhead" "deny" //Let them resize their head
			"sm_resizeme" "deny" //Let them resize their body
			"@CSDM"		"deny"	//deny any commands from the CSDM group
			"sm_noclipme" "allow" //Let them noclip themselves
			"sm_colorize" "deny" //Let them color themselves
			"sm_god" "deny" //Let them god themselves
			"sm_resize" "deny" //Let them color themselves
			"sm_resizehead" "deny" //Let them god themselves
			"sm_evilglow" "deny" //Let them god themselves
		}
    }
	
	"Advanced Admin"
	{
	    "flags"         "abcdef"
        "immunity"      "35" //less moderate immunity value
  
        "Overried"
        {
          "@CSDM"		"deny"	//deny any commands from the CSDM group		
		}
    }
	
	"Admin Trainer"
	{
	    "flags"			"abcdefpq"
		"immunity"      "50" //moderate immunity value
		
		"Overried"
		{
		   "sm_map"	    "allow"	//Let them use sm_map even without the flag
		   "@CSDM"		"deny"	//deny any commands from the CSDM group
		   "sm_reloadscc"      "allow"
		   "sm_printcolors"    "allow"
		}
	}
	
	"Head Admin"
	{
	    "flags"			"abcdefpq"
	  	"immunity"      "75" //high immunity value
		
		"Overried"
		{
		   "sm_map"	    "allow"	//Let them use sm_map even without the flag
		   "@CSDM"		"deny"	//deny any commands from the CSDM group
		   "sm_reloadscc"      "allow"
		   "sm_printcolors"    "allow"
		}
	}
	
	"Owners"
	{
		/**
		 * You can override commands and command groups here.
		 * Specify a command name or group and either "allow" or "deny"
		 * Examples:
		 * 		":CSDM"			"allow"
		 *		"csdm_enable"	"deny"
		 */
		 Overrides
		 {
		    "sm_reloadscc"      "allow"
			"sm_printcolors"    "allow"
		 }
		"flags"			"abcdefghipqz"

		/* Largish number for lots of in-between values. */
		"immunity"		"99"
	}
}
Here is some of my server.cfg

Code: Select all

// General HL Cvars
sv_contact "your@email.address"
decalfrequency 60
mp_decals 100
mp_falldamage 1
sv_cheats 0
sv_maxrate 0
sv_minrate 100000
sv_maxupdaterate 100
sv_maxcmdrate 100
sv_timeout 120
sv_allowupload 1
sv_allowdownload 1
sm_aia_waitingforplayers "0" 
sm_colorme "1"

Any help/suggestions?
Post Reply