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

12 lines
279 B
Lua

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