AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   General (https://forums.alliedmods.net/forumdisplay.php?f=58)
-   -   How can i make some plugins special only for some users (https://forums.alliedmods.net/showthread.php?t=263588)

B.O.T 05-28-2015 13:41

How can i make some plugins special only for some users
 
Hey i made a server and installed some plugins.Everyone have access to those commands.Can you guys tell me how can i make it only for donators and admins/mods? Thanks

TnTSCS 05-28-2015 13:43

Re: How can i make some plugins special only for some users
 
Depending on the plugin, you can override the commands and assign specific admin flags to them.

B.O.T 05-28-2015 13:48

Re: How can i make some plugins special only for some users
 
Its fun plugins for sourcemod.Like !robot or !smTrailme

VPPGamingNetwork.com 05-30-2015 02:14

Re: How can i make some plugins special only for some users
 
use the admin flags for each steamid

lemonx 05-30-2015 04:33

Re: How can i make some plugins special only for some users
 
Quote:

Originally Posted by VPPGamingNetwork.com (Post 2302618)
use the admin flags for each steamid

could you explain that please?

B.O.T 05-30-2015 04:37

Re: How can i make some plugins special only for some users
 
Yes could you?

shanapu 05-30-2015 07:03

Re: How can i make some plugins special only for some users
 
in your sourcemod/configs/admin_override.cfg

Code:

Overrides
{
"sm_robot" "z"
"sm_yourplugin" "z"
}

so these commands can only used by and admin with z flag

VPPGamingNetwork.com 05-30-2015 13:14

Re: How can i make some plugins special only for some users
 
z flag is like the ALmighty flag. I don't think you want your donor's or a low admin to have that flag. They will have rcon command to your server.

VPPGamingNetwork.com 05-30-2015 13:16

Re: How can i make some plugins special only for some users
 
lets say I have custom skins on my servers and I just want my donors to have that access. I would put flag "a"

Flags
{
"reservation" "a" //Reserved slots
"generic" "b" //Generic admin, required for admins
"kick" "c" //Kick other players
"ban" "d" //Banning other players
"unban" "e" //Removing bans
"slay" "f" //Slaying other players
"changemap" "g" //Changing the map
"cvars" "h" //Changing cvars
"config" "i" //Changing configs
"chat" "j" //Special chat privileges
"vote" "k" //Voting
"password" "l" //Password the server
"rcon" "m" //Remote console
"cheats" "n" //Change sv_cheats and related commands

B.O.T 05-31-2015 04:49

Re: How can i make some plugins special only for some users
 
How can i give this donator's lets say "a" group


All times are GMT -4. The time now is 01:26.

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