我如何下载文件(我不使用HTTP / Socknet)?

问题描述 投票:0回答:1

我已经尝试过此代码,但是没有用。

website = ("https://hertztrainer.000webhostapp.com/Farmer.ct")
download = loadstring(getInternet().GetURL(website))
download()
lua download cheat-engine
1个回答
0
投票

我想出了如何使用lua下载文件。我使用了这段代码:

function download(url, file)
  local content = getInternet().getURL(url)
  if not content then
    error("Could not connect to website")
  end
  io.open(file, 'wb')
  io.write(content)
  io.close()

end
download("https://hertzxd.github.io/exploit/HertZTrainer.CETRAINER", "HertZTrainer.CETRAINER")
© www.soinside.com 2019 - 2024. All rights reserved.