get and set
This commit is contained in:
parent
5f65d0bfdb
commit
8f5777ea18
@ -189,8 +189,8 @@ function do_action(msg)
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
if string.starts(msg.text, '!save') then
|
if string.starts(msg.text, '!set') then
|
||||||
local text = save_value(msg.text:sub(6,-1))
|
local text = save_value(msg.text:sub(5,-1))
|
||||||
send_msg(receiver, text, ok_cb, false)
|
send_msg(receiver, text, ok_cb, false)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
@ -255,7 +255,7 @@ end
|
|||||||
function save_value( text )
|
function save_value( text )
|
||||||
local vars = split_by_space(text)
|
local vars = split_by_space(text)
|
||||||
if (#vars < 2) then
|
if (#vars < 2) then
|
||||||
return "Usage: !save var_name value"
|
return "Usage: !set var_name value"
|
||||||
end
|
end
|
||||||
config.values[vars[1]] = vars[2]
|
config.values[vars[1]] = vars[2]
|
||||||
local json_text = json:encode_pretty(config)
|
local json_text = json:encode_pretty(config)
|
||||||
|
Reference in New Issue
Block a user