RueI 3.1.1
See the version list below for details.
dotnet add package RueI --version 3.1.1
NuGet\Install-Package RueI -Version 3.1.1
<PackageReference Include="RueI" Version="3.1.1" />
<PackageVersion Include="RueI" Version="3.1.1" />
<PackageReference Include="RueI" />
paket add RueI --version 3.1.1
#r "nuget: RueI, 3.1.1"
#:package RueI@3.1.1
#addin nuget:?package=RueI&version=3.1.1
#tool nuget:?package=RueI&version=3.1.1
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 | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net48 is compatible. net481 was computed. |
-
.NETFramework 4.8
- Lib.Harmony (>= 2.2.2)
- Northwood.LabAPI (>= 1.1.1)
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