Skip to content

Creating new messages


Adding new messages to Taterzen

Running

/npc edit messages

will send you this:

You've entered message editor for Taterzen. Enter same command to exit.

Send messages in chat and Taterzen will repeat them. You can use normal text or tellraw structure (for colors).

That means that any messages you send to chat will be redirected to Taterzen's to-say list instead.

I want colored messages!

No problem, Taterzens mod has you covered! It supports tellraw json text format as well.

  1. Generate any tellraw command with the text you want. There are online tools that can do it, I recommend using MCStacker.
    /tellraw @p {"text":"Discord invite!","color":"gold","bold":true,"italic":true,"clickEvent":{"action":"open_url","value":"https://discord.gg/9PAesuHFnp"}}
    

This would send a following-like text: Discord invite!

  1. Copy all text from first { all the way to the end.
    {"text":"Discord invite!","color":"gold","bold":true,"italic":true,"clickEvent":{"action":"open_url","value":"https://discord.gg/9PAesuHFnp"}}
    
  2. Send it in chat and NPC will parse it.
Back to top