Turtle chatter¶

Turtle chatter is a small module that allows you to display messages above turtle.
Info
- Text will be additionally wrapped and text will be shifted to new line in case when it is longer than 160 pixels.
- Line breaker symbol
\nworks. - Currently message can be only 6 lines, extra lines will be ignored.
Warning
This upgrade is experimental. Text render can sometimes be pretty ugly, also this is possible for API changes
| Function | Returns | Description |
|---|---|---|
| getMessage() | string? | Returns current stored message |
| setMessage(text: string) | nil | Update stored message |
| clearMessage() | nil | Clears stored message |
How can I get colored text?
You can pass minecraft formatting symbols. For example setMessage("\xA74Red message") will generate red message, because \xA7 converts into § and 4 is dark red.