Skip to content

chat-bubble

The chat-bubble module is responsible for the messages above the player's head

Chat bubble

Module customization

ParameterDescriptionTypeDefault
colorcolor of the message overheadstring#999999
max-per-lineMaximum number of characters per linenumber35
heightHeight of the message above player headnumber1
read-speedread-speed, which determines the length of the messagenumber800

Message duration formula

java
duration = (messageLength + 8 * BubblesCount) * 1200 / readSpeed;
duration = (messageLength + 8 * BubblesCount) * 1200 / readSpeed;