blob: c9840dc81d8bd8eb9d353d90856f45da36efdcaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
function eval_command(command, params, message)
assert(loadstring(params))()
swiftob_reply_to(message, "done")
end
function evalr_command(command, params, message)
result = assert(loadstring(params))()
swiftob_reply_to(message, "" .. result)
end
swiftob_register_command("eval", "Owner", "Evaluate an expression", eval_command)
swiftob_register_command("evalr", "Owner", "Evaluate an expression and return the result", evalr_command)
|