minetest_modding_book/_en/players/chat.md

5.5 KiB

title layout root idx description redirect_from cmd_online cb_cmdsprivs
Chat and Commands default ../.. 4.2 Registering a chatcommand and handling chat messages with register_on_chat_message /en/chapters/chat.html
level title message
warning Offline players can run commands <p>A player name is passed instead of a player object, because mods can run commands on behalf of offline players. For example, the IRC bridge allows players to run commands without joining the game.</p> <p>So make sure that you don't assume that the player is online. You can check by seeing if minetest.get_player_by_name returns a player.</p>
level title message
warning Privileges and Chat Commands The shout privilege isn't needed for a player to trigger this callback. This is because chat commands are implemented in Lua, and are just chat messages that begin with a /.

Introduction

Mods can interact with player chat, including sending messages, intercepting messages and registering chat commands.

Sending Messages to All Players

To send a message to every player in the game, call the chat_send_all function.

minetest.chat_send_all("This is a chat message to all players")

Here is an example of how this appears in-game:

<player1> Look at this entrance
This is a chat message to all players
<player2> What about it?

The message appears on a separate line to distinguish it from in-game player chat.

Sending Messages to Specific Players

To send a message to a specific player, call the chat_send_player function:

minetest.chat_send_player("player1", "This is a chat message for player1")

This message displays in the same manner as messages to all players, but is only visible to the named player, in this case player1.

Chat Commands

To register a chat command, for example /foo, use register_chatcommand:

minetest.register_chatcommand("foo", {
    privs = {
        interact = true
    },
    func = function(name, param)
        return true, "You said " .. param .. "!"
    end
})

Calling /foo bar will display You said bar! in the chat console.

You can restrict which players are able to run commands:

privs = {
    interact = true
},

This means only players with the interact privilege can run the command. Other players will see an error message informing them of which privilege they're missing. If the player has the necessary privileges, the command will run and the message will be sent:

return true, "You said " .. param .. "!"

This returns two values, a Boolean which shows the command succeeded and the chat message to send to the player.

{% include notice.html notice=page.cmd_online %}

Complex Subcommands

It is often required to make complex chat commands, such as:

  • /msg <to> <message>
  • /team join <teamname>
  • /team leave <teamname>
  • /team list

This is usually done using Lua patterns. Patterns are a way of extracting stuff from text using rules.

local to, msg = string.match(param, "^([%a%d_-]+) (*+)$")

The above implements /msg <to> <message>. Let's go through left to right:

  • ^ means match the start of the string.
  • () is a matching group - anything that matches stuff in here will be returned from string.match.
  • [] means accept characters in this list.
  • %a means accept any letter and %d means any digit.
  • [%d%a_-] means accept any letter or digit or _ or -.
  • + means match the last thing one or more times.
  • * means match any character in this context.
  • $ means match the end of the string.

Put simply, this matches the name (a word with only letters/numbers/-/_), then a space, then the message (one of more of any character). The name and message are returned, as they're surrounded in parentheses.

That's how most mods implement complex chat commands. A better guide to Lua Patterns would probably be the lua-users.org tutorial or the PIL documentation.

There is also a library written by the author of this book which can be used to make complex chat commands without Patterns called ChatCmdBuilder.

Intercepting Messages

To intercept a message, use register_on_chat_message:

minetest.register_on_chat_message(function(name, message)
    print(name .. " said " .. message)
    return false
end)

By returning false, you allow the chat message to be sent by the default handler. You can actually remove the line return false, and it would still work the same.

{% include notice.html notice=page.cb_cmdsprivs %}

You should make sure you take into account that it may be a chat command, or the user may not have shout.

minetest.register_on_chat_message(function(name, message)
    if message:sub(1, 1) == "/" then
        print(name .. " ran chat command")
    elseif minetest.check_player_privs(name, { shout = true }) then
        print(name .. " said " .. message)
    else
        print(name .. " tried to say " .. message ..
                " but doesn't have shout")
    end

    return false
end)