generated from your-land/yl_template
28 lines
1.2 KiB
Lua
28 lines
1.2 KiB
Lua
local chatcommand_cmd = yl_ticker.settings.chatcommand_domain .. "_examples"
|
|
local chatcommand_definition = {
|
|
params = "",
|
|
description = "Shows copyable examples for /" ..
|
|
yl_ticker.settings.chatcommand_domain .. "_add commands." ..
|
|
"\nExample: /" .. chatcommand_cmd,
|
|
privs = {[yl_ticker.settings.user_privs] = true},
|
|
func = function(name, param)
|
|
local success, message = yl_ticker.chatcommand_ticker_examples(name,
|
|
param)
|
|
|
|
if success then
|
|
minetest.log("action", "[yl_ticker] player " .. name ..
|
|
" displays examples for ticker: " .. param)
|
|
return true, message
|
|
else
|
|
minetest.log("warning",
|
|
"[yl_ticker] player " .. name ..
|
|
" displays examples for ticker: " .. param ..
|
|
" unsuccessfully, message: " .. message)
|
|
return false, message
|
|
end
|
|
end
|
|
}
|
|
|
|
minetest.register_chatcommand(chatcommand_cmd, chatcommand_definition)
|
|
yl_ticker.register_help(chatcommand_cmd, chatcommand_definition)
|