У меня есть интерфейс LUA в AHK, который выполняет следующее l oop:
function ApplicationInit()
-- Load application
loadGameClient()
--soundPlay("sounds/xxx.wav")
-- Load player of current client
if Player:loadPlayer() then
gameActivate()
end
-- Send Status Message On Window
while true do
if not IsPause then
Module.libOnTimer()
end
Status:Update()
sleep(10)
end
end
Но я хотел бы показать GUI без остановки этого l oop.