Library Of Ruina

Library Of Ruina

Not enough ratings
Unlimited Battle Dialogue Length
   
Award
Favorite
Favorited
Unfavorite
File Size
Posted
Updated
75.169 KB
Sep 1, 2024 @ 3:31pm
Sep 1, 2024 @ 3:42pm
2 Change Notes ( view )

Subscribe to download
Unlimited Battle Dialogue Length

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

Makes the character limit for battle dialogue (probably) infinite: Now your OC can yap with style!

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). Note that you will need a publicizer for Unity.TextMeshPro.dll

https://imgur.com/a/krafs-publicizer-dummies-FxTU1nD


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.scriptPanel.inputField.characterLimit = 0;
Destroy(gameObject);
}
}
}
}
3 Comments
azxgamer1334 Sep 8, 2024 @ 6:23pm 
ngl this is hilarious lmao
Nova Sep 1, 2024 @ 7:22pm 
Finally. My nugget can now reiterate the entire bee movie script right before death.
Phillip  [author] Sep 1, 2024 @ 3:46pm 
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.