useRenderCommands(bool enable)
Активирует или отключает рендер текста и текстур опкодами игры. Аналог опкода 03F0.
bool enable
статус
local glob = require "lib.game.globals"
function main()
while true do
wait(0)
useRenderCommands(true)
setGxtEntry("IGTIME", string.format("Time: %02d:%02d", getGameGlobal(glob.Time_Hours), getGameGlobal(glob.Time_Mins)))
displayText(10, 10, "IGTIME")
end
end