1
Fork 0
This repository has been archived on 2025-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
computer-craft/execute

5 lines
152 B
Text

local tArgs = { ... }
local url = "http://example.net/computercraft/"
local x = http.get(url..tArgs[1]).readAll()
f = loadstring(x)
f(unpack(tArgs, 2))