• help with chat tag color (deathrun)
    1 replies, posted
hi i have a deathrun server and i have custom chat tags that i downloaded and edited, and the color of the death and runner are red and blue. so i want to change that to the chat tag color, here an example : [IMG]https://i.gyazo.com/1330771d76a13082ea11fee9597e3325.png[/IMG] like you see the color of the death is red and the color of the chat tag is like blue. this is what i found in shared.lua file : [CODE]function GM:CreateTeams() TEAM_DEATH = 2 team.SetUp( TEAM_DEATH, "Death", Color( 180, 60, 60, 255 ), false ) team.SetSpawnPoint( TEAM_DEATH, "info_player_terrorist" ) TEAM_RUNNER = 3 team.SetUp( TEAM_RUNNER, "Runner", Color( 60, 60, 180, 255 ), false ) team.SetSpawnPoint( TEAM_RUNNER, "info_player_counterterrorist" ) team.SetUp( TEAM_SPECTATOR, "Spectator", Color( 125, 125, 125, 255 ), true ) end[/CODE] how can i changed it ? and i tried to delete the color line once and its didnt work and mess up some things.
[CODE] team.SetUp( TEAM_DEATH, "Death", Color( 180, 60, 60, 255 ), false ) [/CODE] Try changing the Color( r,g,b,a ) thing here to be something else, e.g. [CODE] team.SetUp( TEAM_DEATH, "Death", Color( 255, 255, 255, 255 ), false ) [/CODE] If that doesn't work then probably contact the author
Sorry, you need to Log In to post a reply to this thread.