- 259
- 89
- Версия MoonLoader
- .027.0-preview
Здравствуйте, есть какой-то вариат сделать так чтобы оно не сворачивало игру ради выполнения команды?
Lua:
function execute_linux_command(command, temp_file)
local handle = io.popen('start /exec ' .. command .. ' > '..temp_file)
local result = handle:read("*a")
handle:close()
wait(100)
local file = io.open(temp_file, "r")
result = file:read('*all')
file:close()
return result
end