- 27
- 2
Заранее спасибо кто поможет)
Вопрос такой, как добавить такую же кнопку как на 28, 29 строчке, но с одним текстом типа sampAddChatMessage(u8"как дела?"), -1)
imgui:
require "lib.moonloader"
local imgui = require 'imgui'
local encoding = require 'encoding'
encoding.default = 'CP1251'
u8 = encoding.UTF8
local main_window_state = imgui.ImBool(false)
local text_buffer = imgui.ImBuffer(256)
imgui.Process = false
while true do
wait(0)
if main_window_state.v == false then
imgui.Process = false
end
function cmd_imgui(arg)
main_window_state.v = not main_window_state.v
imgui.Process = main_window_state.v
end
function imgui.OnDrawFrame()
imgui.Begin(u8"имгуи", main_window_state)
imgui.InputText(u8"напиши сюда что-нибудь", text_buffer)
x, y, z = getCharCoordinates(PLAYER_PED)
imgui.Text(u8("позиция макаки: X:" .. math.floor(x) .. " | Y: " .. math.floor(y) .. " | Z: " .. math.floor(z)))
if imgui.Button("press") then
sampAddChatMessage(u8:decode(text_buffer.v), -1)
end
imgui.End()
end
Вопрос такой, как добавить такую же кнопку как на 28, 29 строчке, но с одним текстом типа sampAddChatMessage(u8"как дела?"), -1)