Files
aiolauncher_scripts/args-test.lua
2021-07-30 15:37:10 +03:00

11 lines
250 B
Lua

-- argumentsHelp = "The word recorded here will be displayed on the screen."
function onResume()
local args = aio:getArgs()
if args == nil then
ui:showText("args is empty")
else
ui:showText("arg1: "..args[1])
end
end