Ulysses

General => Developers Corner => Topic started by: Rain on July 06, 2017, 08:26:28 AM

Title: Above Head Staff Tags
Post by: Rain on July 06, 2017, 08:26:28 AM
So i've got this set for above head tags in the darkrp cl_hud.


    group = self:GetNWString("usergroup")

        draw.SimpleText(group,  "DarkRPHUD2", pos.x + 80, pos.y - 26, Color( 0, 140, 210, 255 ) )   


It shows tags but it shows all rank tags and i've been trying to figure out how to make it only show if the player is Moderator, Admin etc, but most commands like _p and ply dont work any help would be great TIA.   
Title: Re: Above Head Staff Tags
Post by: JamminR on July 06, 2017, 07:57:16 PM
I've no idea how your coding skills are, but, my suggestions in pseudo code/logic; YOU turn it into real code

Use a table to store groups you want, then an if statement to check the table and if matched, draw.

my_groups_I_want_to_see = { "moderator", "admin" }
group = self:GetNWString("usergroup")
if table.HasValue( my_groups_I_want_to_see, group ) then draw.SimpleText(group,  "DarkRPHUD2", pos.x + 80, pos.y - 26, Color( 0, 140, 210, 255 ) )   

(table.HasValue is not really efficient for frame by frame drawing like this likely does..you find the faster methods)
Title: Re: Above Head Staff Tags
Post by: Rain on July 07, 2017, 09:19:16 AM
oh that would do the trick, thank you heaps!