Library Of Ruina

Library Of Ruina

Not enough ratings
Unlimited Librarian Name Length
   
Award
Favorite
Favorited
Unfavorite
File Size
Posted
Updated
49.255 KB
31 Aug, 2024 @ 7:09pm
1 Sep, 2024 @ 3:27pm
5 Change Notes ( view )

Subscribe to download
Unlimited Librarian Name Length

Description
Surprised that this was never made, so here it is.

Makes the character limit for names (probably) infinite: Now you can address your OC with their full title!

Shoutout to Project Moon Community Hub Discord and Cyaminthe for writing the code and handholding me though the whole process.

Here is code. (idk why no spaces)


class Initializer : ModInitializer
{
public override void OnInitializeMod()
{
var checkerObject = new GameObject("LimitChecker");
UnityEngine.Object.DontDestroyOnLoad(checkerObject);
checkerObject.AddComponent<LimitChecker>();
}

class LimitChecker : MonoBehaviour
{
void Update()
{
if (UICustomizePopup.Instance)
{
UICustomizePopup.Instance.namePanel.inputField.characterLimit = 0;
Destroy(gameObject);
}
}
}
}
4 Comments
Noobas 27 Nov, 2024 @ 7:37pm 
isoleucine full name.
korro 18 Oct, 2024 @ 11:20pm 
finally
now nothing is stopping me from naming my nugget every cookie clicker achievement
wisper 10 Sep, 2024 @ 10:47am 
i can't wait to make
ALPHASKIBIDIDIPPEROGMEGATHEGODOFDEATHANDSKIBIDRIZZGYATHOHIORIZZLER
Phillip  [author] 1 Sep, 2024 @ 1:59pm 
I'm not going to lie, if there are issues with this mod you probably should go to the PMCH's ruina-modding section for help.