?
-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Пожалуйста, авторизуйтесь для просмотра ссылки.
JavaScript:
UI.AddColorPicker("UI Color")
const watermark = function() {
const fps = Math.floor(1 / Global.Frametime());
const ping = Math.round(Entity.GetProp(Entity.GetLocalPlayer(), "CPlayerResource", "m_iPing")).toString()
const text = "copium | error | " + fps + " fps | latency: " + ping + " ms"
const width = Render.TextSizeCustom(text, Render.AddFont("Verdana", 7, 0))[0] + 10
const color = UI.GetColor("Script items", "UI Color")
Render.FilledRect(Render.GetScreenSize()[0] - 215, 1, width, 20, [41, 41, 51, 255])
Render.FilledRect(Render.GetScreenSize()[0] - 215, 21, width, 4, [color[0], color[1], color[2], 255])
Render.GradientRect(Render.GetScreenSize()[0] - 187, 21, 28, 4, 1, [255, 255, 255, 100], [41, 41, 51, 0])
Render.GradientRect(Render.GetScreenSize()[0] - 215, 21, 28, 4, 1, [41, 41, 51, 0], [255, 255, 255, 100])
Render.StringCustom(Render.GetScreenSize()[0] - 109, 4, 7, text, [0, 0, 0, 220], Render.AddFont("Verdana", 7, 0))
Render.StringCustom(Render.GetScreenSize()[0] - 109, 4, 7, text, [255, 255, 255, 220], Render.AddFont("Verdana", 7, 0))
}
Cheat.RegisterCallback("Draw", "watermark")