RueI is a hint framework, designed to be the definitive way to display multiple hints at once. you can get the latest release here.
if you want to develop using RueI, make sure you install the nuget package
RueI also has a website with documentation.
RueI is a LabAPI plugin, although it works with EXILED plugins, too. simply download the latest release, then put it in your plugin folder. RueI also requires Harmony 2.2.2 and above: you can download that here.
RueDisplay display = RueDisplay.Get(player);
Tag welcomeTag = new();
display.Show(welcomeTag, new BasicElement(800, "Welcome to the server!"));
display.Show(new BasicElement(300, "Don't forget to read the rules!"), 10f);
Timing.CallDelayed(5f, () =>
{
display.Show(welcomeTag, new BasicElement(800, "New update: We added support for multiple hints at once!"), 10f);
});- support for displaying multiple hints at once without them interfering with eachother
- allows using hint parameters
- extensions for StringBuilder that makes adding tags easier
- aspect ratio support
- extremely optimized and efficient
RueI is not a grid-based or line-based system, it calculates the offset necessary to put a hint at the same position no matter what
if you've encountered any bugs please make an issue (it helps me out a ton)