0

我有多个 Steam 帐户,我想通过一个带有我指定选项的 Lua 脚本启动它们。除了使用提供的代码启动之外,我几乎已经对所有内容进行了排序。我不知道如何以这种格式“传递”变量。

function Steam(n, opt1, opt2, opt3)
os.execute[["start C:\Program" "Files\Sandboxie\Start.exe /box:Steam2 D:\Steam\steam.exe -login username password -opt1 -opt2 -opt3"]]
end

我设置了我的用户名和沙盒,因此只需使用相同的密码更改数字(fenriros2、fenriros3、Steam2、Steam3 等)。

基本上,我想要这个;

Steam(3, -tf, -exit, -textmode)

去做;

os.execute[["start C:\Program" "Files\Sandboxie\Start.exe /box:Steam3 D:\Steam\steam.exe -login fenriros3 password -applaunch 440 -textmode"]]

完成后,我将使用 -exit 关闭 lua 窗口。

我意识到我的代码并不完全有效,但这是以后的担忧。现在我只需要让它工作。

非常感谢任何帮助,如果我错过了一些明显的东西,我深表歉意,我在 Lua 上还是个新手。

4

1 回答 1

2

第一个明显的。[[ ]] 分隔字符串,因此您需要做的就是为字符串创建一个变量并根据需要替换内容。

function Steam(n, opt1, opt2, opt3)
-- Set up execute string with placeholders for the parameters.
local strExecute = [["start C:\Program" "Files\Sandboxie\Start.exe /box:Steam{n} D:\Steam\steam.exe -login fenriros{n} password -{opt1} -{opt2} -{opt3}"]]

-- Use gsub to replace the parameters
-- You could just concat the string but I find it easier to work this way.
strExecute = strExecute:gsub('{n}',n)
strExecute = strExecute:gsub('{opt1}',opt1:gsub('%%','%%%%'))
strExecute = strExecute:gsub('{opt2}',opt2:gsub('%%','%%%%'))
strExecute = strExecute:gsub('{opt3}',opt3:gsub('%%','%%%%'))
os.execute(strExecute)
end

Steam(1,'r1','r2','r3')
于 2013-03-26T08:10:55.737 回答