RueI 3.1.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package RueI --version 3.1.1
                    
NuGet\Install-Package RueI -Version 3.1.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RueI" Version="3.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RueI" Version="3.1.1" />
                    
Directory.Packages.props
<PackageReference Include="RueI" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add RueI --version 3.1.1
                    
#r "nuget: RueI, 3.1.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package RueI@3.1.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=RueI&version=3.1.1
                    
Install as a Cake Addin
#tool nuget:?package=RueI&version=3.1.1
                    
Install as a Cake Tool

RueI

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.

Installation

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.

Example

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);
});

Features

  • 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

Comments

if you've encountered any bugs please make an issue (it helps me out a ton)

Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.1.2 202 10/11/2025
3.1.1 206 10/3/2025
3.1.0 191 9/30/2025
3.0.0 188 9/30/2025
2.1.3 360 5/25/2025
2.1.2 266 4/28/2025
2.1.1 425 12/29/2024
2.1.0 2,064 6/19/2024
2.0.5 424 1/9/2024
2.0.4 198 1/6/2024
2.0.3 209 1/1/2024
2.0.2 199 12/30/2023
2.0.1 246 11/22/2023
2.0.0 182 11/20/2023

fix a bug with DynamicElement