Library Of Ruina

Library Of Ruina

评价数不足
Unlimited Librarian Name Length
   
奖励
收藏
已收藏
取消收藏
文件大小
发表于
更新日期
49.255 KB
2024 年 8 月 31 日 下午 7:09
2024 年 9 月 1 日 下午 3:27
5 项改动说明 ( 查看 )

订阅以下载
Unlimited Librarian Name Length

描述
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 条留言
Noobas 2024 年 11 月 27 日 下午 7:37 
isoleucine full name.
D# Slap 2024 年 10 月 18 日 下午 11:20 
finally
now nothing is stopping me from naming my nugget every cookie clicker achievement
wisper 2024 年 9 月 10 日 上午 10:47 
i can't wait to make
ALPHASKIBIDIDIPPEROGMEGATHEGODOFDEATHANDSKIBIDRIZZGYATHOHIORIZZLER
Phillip  [作者] 2024 年 9 月 1 日 下午 1:59 
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.