- 126
- 9
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Вроде enconding подключил
что тут не так?
что тут не так?
Lua:
require("lib.moonloader")
local imgui = require "imgui"
local encoding = require 'encoding'
encoding.default = 'CP1251'
u8 = encoding.UTF8
local main_window_state = imgui.ImBool(false)
function main()
if not isSampLoaded() then return end
while not isSampAvailable() do wait(100) end
sampAddChatMessage('{A21DF2}Ну че имгуй работает', -1)
sampRegisterChatCommand("ff",function()
sampAddChatMessage('{A21DF2}Ну и нахуй ты это написал', -1)
main_window_state.v = not main_window_state.v
end)
while true do
wait(0)
imgui.Process = main_window_state.v
end
end
function imgui.OnDrawFrame()
if main_window_state.v then
imgui.SetNextWindowSize(imgui.ImVec2(150, 200), imgui.Cond.FirstUseEver)
imgui.Begin('дебил', main_window_state)
imgui.Text('пмыпвыва')
if imgui.Button('Press me') then
sampAddChatMessage('{A21DF2}И НАХУЯ БЛЯТЬ НАЖАЛ НА КНОПОЧКУ', -1)
end
imgui.End()
end
end