Help! Need help hooking BigInteger value and float[] in C++

dinoid

Awesome Active Platinian
Currently I'm working with hooking (il2cpp games) for my mods but I'm facing an issue with methods that require BigInteger or that work with float[].
If you guys have any kind of material or thread for me to read and study it would be nice.
 
For the first one you could just Google it and you would know it. Just a quick Google search such as "BigInteger C#" would help you understand. The BigInteger type is an immutable type that represents an arbitrarily large integer whose value in theory has no upper or lower bounds. But since there isn't a BigInteger in C++, you could just hook the method as int but don't go over the limit of a primitive int in C++. The second one is an array How to hook arrays in Unity's Il2cpp - Platinmods.com - Android & iOS MODs, Mobile Games & Apps
 
For the first one you could just Google it and you would know it. Just a quick Google search such as "BigInteger C#" would help you understand. The BigInteger type is an immutable type that represents an arbitrarily large integer whose value in theory has no upper or lower bounds. But since there isn't a BigInteger in C++, you could just hook the method as int but don't go over the limit of a primitive int in C++. The second one is an array How to hook arrays in Unity's Il2cpp - Platinmods.com - Android & iOS MODs, Mobile Games & Apps
Thanks for your reply but, the problem with BigInteger is that I can't handle with it as an int as the game will bug like crazy. I've already tried it.

Btw, thank you a lot for the Hook array link!
 
Back
Top Bottom