function main()
wait(2000)
font = renderCreateFont("Arial", 16, 5)
lua_thread.create(render)
while true do
wait(0)
if menutrigger ~= nil then menu() menutrigger = nil end
end
end
function render()
resX, resY = getScreenResolution()
while true do
wait(0)
while true do
chat99, prefix, color, pcolor = sampGetChatString(99)
wait(0)
renderFontDrawText(font, "Баг?\nВерсия муна: "..getMoonloaderVersion().."\nstring: "..chat99.."\nЦвет 1: "..tostring(color).."\nЦвет 2: "..tostring(pcolor), resX / 50, resY / 3.5, 0xFF00FF00)
end
end
end