View Single Post
Tylerst
Veteran Member
Join Date: Oct 2010
Old 04-27-2012 , 01:35   Re: [TF2] Donator Plugins/Flags
Reply With Quote #2

Yo can either use global command overrides:
http://wiki.alliedmods.net/Overridin...ss_(SourceMod)

For example in admin_overrides:
Code:
"sm_giveweapon" "o"
Then anyone with the o flag can use that command

or groups with specific command access:
http://wiki.alliedmods.net/Adding_Groups_(SourceMod)
For example in admin_groups:
Code:
Groups
{
	"Donators"
	{
		"flags"		"o"
		Overrides
		 {
			"sm_giveweapon"		"allow"
		 }
		
	}
}
Then anyone with the Donators group would get the o flag and gain access to that command, even with the command retaining it's default access flag.

Last edited by Tylerst; 04-27-2012 at 01:41.
Tylerst is offline