Ulysses

General => Developers Corner => Topic started by: Redemption_2000 on December 24, 2017, 09:35:25 AM

Title: Restriticing
Post by: Redemption_2000 on December 24, 2017, 09:35:25 AM
Okay so basically what I want to know how would I restrict ULX Commands to a set DarkRP team say i want to make the script below only to be used by TEAM_EP & TEAM_SOD
Code: [Select]
local CATEGORY_NAME = "Apple's Creations"


function ulx.giveweapon( calling_ply, target_plys, weapon )


local affected_plys = {}
for i=1, #target_plys do
local v = target_plys[ i ]

if not v:Alive() then
ULib.tsayError( calling_ply, v:Nick() .. " is dead", true )

else
v:Give(weapon)
table.insert( affected_plys, v )
end
end
ulx.fancyLogAdmin( calling_ply, "#A gave #T weapon #s", affected_plys, weapon )
end


local giveweapon = ulx.command( CATEGORY_NAME, "ulx giveweapon", ulx.giveweapon, "!giveweapon" )
giveweapon:addParam{ type=ULib.cmds.PlayersArg }
giveweapon:addParam{ type=ULib.cmds.StringArg, hint="weapon name" }
giveweapon:defaultAccess( ULib.ACCESS_ADMIN )
giveweapon:help( "Give a player a weapon - !giveweapon" )



function ulx.sgiveweapon( calling_ply, target_plys, weapon )


local affected_plys = {}
for i=1, #target_plys do
local v = target_plys[ i ]

if not v:Alive() then
ULib.tsayError( calling_ply, v:Nick() .. " is dead", true )

else
v:Give(weapon)
table.insert( affected_plys, v )
end
end
end


local sgiveweapon = ulx.command( CATEGORY_NAME, "ulx sgiveweapon", ulx.sgiveweapon )
sgiveweapon:addParam{ type=ULib.cmds.PlayersArg }
sgiveweapon:addParam{ type=ULib.cmds.StringArg, hint="weapon name" }
sgiveweapon:defaultAccess( ULib.ACCESS_ADMIN )
sgiveweapon:help( "Give a player a weapon silently" )
Title: Re: Restriticing
Post by: JamminR on December 24, 2017, 02:20:13 PM
ULX has little to do with teams, so it's not ULX code.
You'd need to add team checks

(http://wiki.garrysmod.com/favicon.ico) Player:Team (http://wiki.garrysmod.com/page/Player/Team)
(http://wiki.garrysmod.com/favicon.ico) team.GetName (http://wiki.garrysmod.com/page/team/GetName)

Though the below should work, it's untested, and doesn't include ANY nice logging or notification to the person trying to run it why it didn't work.
It would need to be added in the beginning of the function.

Code: [Select]
calling_ply_team = calling_ply:Team() -- get team index number
calling_ply_teamname = team.GetName( calling_ply_team ) -- get name of team index number
if calling_ply_teamname ~= "TEAM_EP" or calling_ply_teamname ~= "TEAM_SOD" then return -- if name isn't EP or SOD, return out of function doing nothing.