/
EN/English | ZH-CN/简体中文
A Fabric mod that automatically sends greeting messages when you or other players join a server
/autogreet self .../autogreet other ...Notes:
[a|b] means a or bFor example:
/autogreet [other|self] status
means either:
/autogreet other status
or
/autogreet self status
Controls whether auto greeting is enabled or disabled.
/autogreet [self|other] status
/autogreet [self|other] status enable
/autogreet [self|other] status disable
/autogreet [self|other] status toggle
Controls what the mod sends.
You can use placeholders.
/autogreet [self|other] message add <message>
/autogreet [self|other] message add <message> <index>
/autogreet [self|other] message remove
/autogreet [self|other] message remove <index>
/autogreet [self|other] message remove all
/autogreet [self|other] message list
self| Placeholder | Description |
|---|---|
@player | Player name |
@UUID | UUID |
@X | X coordinate (up to 3 decimals) |
@Y | Y coordinate (up to 3 decimals) |
@Z | Z coordinate (up to 3 decimals) |
@health | Current health |
@level | Current experience level |
other| Placeholder | Description |
|---|---|
@player | Player name |
@UUID | Player UUID |
/autogreet other [whitelist|blacklist] list
/autogreet other [whitelist|blacklist] clear confirm
/autogreet other [whitelist|blacklist] [match|except] list
/autogreet other [whitelist|blacklist] [match|except] [equal|contain|startWith|endWith] add <pattern>
/autogreet other [whitelist|blacklist] [match|except] [equal|contain|startWith|endWith] remove
/autogreet other [whitelist|blacklist] [match|except] [equal|contain|startWith|endWith] remove <index>
/autogreet other [whitelist|blacklist] [match|except] [equal|contain|startWith|endWith] remove all
/autogreet other [whitelist|blacklist] [match|except] [equal|contain|startWith|endWith] list
/autogreet self message add Hello, I'm @player at (@X, @Y, @Z)
/autogreet self message add HP: @health | Level: @level
/autogreet other message add Welcome @player!
/autogreet other message add Hello @player (@UUID)
If a message does start with /, it is executed as a command.
If a message does not start with /, it is sent as a normal chat message.
other greetings support:
match rulesexcept rulesequalcontainstartWithendWithThese rules are used to decide whether a joining player's name should trigger greeting logic.
index is optional and 1-basedadd <message> <index> inserts before the existing item at that positionindex is omitted or out of range, the message is appendedremove <index> removes the specified itemremove without an index removes the last itemremove all clears the message listclear confirm clears the entire blacklist or whitelist rule setMIT

A Fabric mod that automatically sends greeting messages.