General > Developers Corner

Deathrun Scoreboard colours by rank

(1/1)

Poseidon:
Im not that good with LUA and stuff  so i was looking on how to make it so your name is the same colour as the rank.

EG. I would like to make creator blue on the scoreboard and mod green

Currently it gives a basic yellow colour to any rank based on superadmin

I would appreciate help on this please

Avoid:
Hello,
take a look into 'hook_examples.lua' in the gamemode folder:


--- Code: ---hook.Add( "GetScoreboardNameColor", "Name Color Example", function( ply )

if ply:IsUserGroup( "vip" ) then -- If the player is in the "vip" group
return Color( 255, 0, 0, 255 ) -- give the player a red name.
end

end )

--- End code ---

Navigation

[0] Message Index

Go to full version