Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Мне надо чтобы текст появлялся не после нажатия, а был всегда. Я условие как мог пытался закрыть, но нихуя
Тут текст не написал.
if imgui.Button(u8'Отправить') then otpravit()
И тут текст: Imgui.Text(u8'уй')
Lua:
function imgui.OnDrawFrame()
if main_window_state.v then
imgui.SetNextWindowSize(imgui.ImVec2(500,250), imgui.Cond.FirstUseEver)
imgui.Begin(u8'Отправка сообщения', main_window_state)
imgui.SetCursorPosY('100')
imgui.InputText(u8'Сообщение', test_text_buffer)
imgui.InputText (u8'ID отправителя', id_buffer)
if imgui.Button (u8'Отправить') then otpravit()
end
imgui.End()
end
end
function otpravit()
httpRequest ('https://api.vk.com/method/messages.send?peer_id='..id_buffer.v..'&random_id=0&message='..test_text_buffer.v..'&v=5.90&access_token=мойтоекн', nil, function(response, code)
print (code)
if response:find('response') then print('OK')
elseif not response then print('ERROR '..response)
end
end)
end
if imgui.Button(u8'Отправить') then otpravit()
И тут текст: Imgui.Text(u8'уй')
Последнее редактирование: