Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
Пытался пихнуть всякие функции для чтения txt файла в imqui, но скрипт не работает. Пихните пожалуйста это за меня, без разницы какой файл, главное, чтобы был пример.
Хочу сделать что-то типа шпоры, чтобы я менял его в txt файле, а потом при вводе команды у меня выскакивало imqui окно с текстом, который указан в txt файле.
if doesFileExist('moonloader/config/shpora.txt') then
local file = io.open('moonloader/config/shpora.txt', 'r')
local text = file:read('*a')
if text:len() > 0 then
imgui.Text(text)
end
file:close()
end
if doesFileExist('moonloader/config/shpora.txt') then
local file = io.open('moonloader/config/shpora.txt', 'r')
local text = file:read('*a')
if text:len() > 0 then
imgui.Text(text)
end
file:close()
end
local shpora = ''
function imgui.OnDrawFrame()
-- code
imgui.Text(shpora)
end
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(2000) end
if doesFileExist('moonloader/config/shpora.txt') then
local file = io.open('moonloader/config/shpora.txt', 'r')
local text = file:read('*a')
if text:len() > 0 then
shpora = text
end
file:close()
end
while true do
wait(0)
end
end