Hi! Now I'm working on a new version of the mod where I'll fix all the bugs and bugs and everything will work on the servers!
This mod adds new features to the CNPC mod and more.
eSay(String message, String color);
Example:
eSay("Hello!", "E9967A");
The color is in hex format, and if not specified, the default color is #C0C0C0.
eSayTo(IPlayer player, String message, String color);
Example:
eSayTo(event.player, "Hello " + event.player, "E9967A");
eSetGlowing(boolean);
boolean can be true or false.
eSayBar - with the option to set an icon for the character;
eSayBarI - without a character icon.
eSayBar(IPlayer IPlayer, String message, String fakeName, String hexColor, String icon, int maxSymbolsFirstLine, int maxSymbolsOtherLines);
eSayBar(IPlayer IPlayer, String message, String fakeName, String hexColor, String icon);
eSayBar(IPlayer IPlayer, String message, String hexColor, String icon);
eSayBar(IPlayer IPlayer, String message, String hexColor, String icon, int maxSymbolsFirstLine, int maxSymbolsOtherLines);
Example:
eSayBar(e.player, "Hello my friend", "Sigma228", "9370DB", "npc");
Types of icons (icon):
npcnoninvisible.minecraft/customnpcs/assets/customnpcs/textures/icons/myicon.png folder.In-game: "customnpcs:textures/icons/myicon.png".
eSayBarI(IPlayer IPlayer, String message, String fakeName, String hexColor, int maxSymbolsFirstLine, int maxSymbolsOtherLines);
eSayBarI(IPlayer IPlayer, String message, String fakeName, String hexColor);
eSayBarI(IPlayer IPlayer, String message, String hexColor);
eSayBarI(IPlayer IPlayer, String message, String hexColor, int maxSymbolsFirstLine, int maxSymbolsOtherLines);
These are the same methods as eSayBar but without a character icon.
/shine dialog show player id name
Example:
/shine dialog show Dev 13 "MrBest"
Opens a dialogue with ID 13 for player Dev under the name MrBest.
/shine blockbreak block player boolean
false — blocks breaking, true — allows it.
/shine installingBlocks player boolean
false — blocks placing, true — allows it.