Ulysses

General => Developers Corner => Topic started by: FBspitty on August 11, 2014, 07:23:31 PM

Title: Player Specific jobs
Post by: FBspitty on August 11, 2014, 07:23:31 PM
Hello i have just finished reading a topic that helped me with usergroup specific jobs but now i want player specific i was wondering if and how this would work

  customCheck = function(ply) return ply:GetNWString("usergroup") == "owner" end,

but as something like

  customCheck = function(ply) return ply:GetNWString("STEAMID") == "STEAMIDHERE" end,
Title: Re: Player Specific jobs
Post by: Caustic Soda-Senpai on August 24, 2014, 09:18:54 PM
customCheck = function( ply ) return ply:SteamID() == "STEAM_(numbers)" end

This is just my method, hope it helps.