- 230
- 48
- Версия MoonLoader
- .026-beta
1 почему не пропадает курсор, он просто моргает но не исчезает
2 как сделать так чтобы не моргал а то заеб, даже так сделал, не помогло
p.s. весь код
2 как сделать так чтобы не моргал а то заеб, даже так сделал, не помогло
p.s. весь код
Lua:
local imgui = require('imgui')
local fa = require('fAwesome5')
local encoding = require('encoding')
encoding.default = 'CP1251'
u8 = encoding.UTF8
function imgui.OnDrawFrame()
imgui.SetNextWindowPos(imgui.ImVec2(1007,375), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
imgui.Begin('##',nil,imgui.WindowFlags.NoTitleBar+imgui.WindowFlags.AlwaysAutoResize)
imgui.Text(u8( ('Health: %d\n'):format(isCharInAnyCar(playerPed) and getCarHealth(storeCarCharIsInNoSave(playerPed)) or getCharHealth(playerPed)) ))
imgui.End()
end
function main()
imgui.Process = true
while true do wait(0)
if not(isSampfuncsConsoleActive() or sampIsChatInputActive()) and imgui.Process then
imgui.showCursor = false
showCursor(false)
end
end
end