You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
447 B
17 lines
447 B
local serverM, server = {}, {}
|
|
serverM.__index = function(args, args2)
|
|
local func = [[
|
|
local args = { ... }
|
|
local conn = "]]
|
|
.. args2 .. [["
|
|
print("Running this function: " .. conn)
|
|
print(...)
|
|
return true
|
|
]]
|
|
local fun, err = loadstring(func)
|
|
return fun
|
|
end
|
|
|
|
setmetatable(server, serverM)
|
|
server.call = function() print "meh" end
|
|
server.rpc("have", "you", "heard", "of", "the", "tragedy", "of", "darth", "plageius", "the", "wise")
|
|
|