We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36bcce5 commit 2cc3890Copy full SHA for 2cc3890
mesecons_commandblock/init.lua
@@ -20,6 +20,14 @@ minetest.register_chatcommand("tell", {
20
end
21
})
22
23
+minetest.register_chatcommand("tellme", {
24
+ params = "<text>",
25
+ description = "Say <text> to yourself",
26
+ func = function(name, param)
27
+ minetest.chat_send_player(name, param)
28
+ end
29
+})
30
+
31
minetest.register_chatcommand("hp", {
32
params = "<name> <value>",
33
description = "Set health of <name> to <value> hitpoints",
0 commit comments