Как поменять цвет текста ? При вводе в чат /com Привет в чате появляется надпись [Комлинк] Demikll: Привет, но надпись голубого цвета, как её сделать белого цвета ?
-- cl_comlink.lua
if CLIENT then
net.Receive('ComlinkChat', function()
local pl = net.ReadEntity()
local str = net.ReadString()
chat.AddText(Color(255, 255, 255), string.format("[Комлинк] %s: %s", pl:Nick(), str))
end)
end
-- sh_comlink.lua
if SERVER then
util.AddNetworkString('ComlinkChat') -- This should be under the SERVER check
end
if CLIENT then
net.Receive('ComlinkChat', function()
local pl = net.ReadEntity()
local str = net.ReadString()
chat.AddText(string.format("[Комлинк] %s: %s", pl:Nick(), str))
end)
end
-- sv_comlink.lua
include("sh_comlink.lua") -- Include the shared definitions
local function Send(pl, str)
net.Start('ComlinkChat')
net.WriteEntity(pl)
net.WriteString(str)
net.Broadcast()
end
hook.Add("PlayerSay", "ComlinkChat", function(player, text, teamChat)
if string.sub(text, 1, 5) == "/com " then
Send(player, string.sub(text, 6))
return ""
end
end)