Search results

  1. Help! Help hook class

    As I understand it, you want to get a class object to call any methods or use variables in it. I advise you to intercept any called method in the class and receive the first argument, which will be a pointer to the class object itself. This is a pointer to the class object itself, with the...
  2. Solved ByNameModding and KittyMemory conflict

    Hello, I bypassed the anti-cheat in one game and I had a problem using ByNameModding and KittyMemory. If I myself write the address to the start method, and make a patch through the PATCH method, then everything works perfectly and I bypass the anti-cheat, but if I look for the Start method...
  3. Help! ImGUI menu not showing in game

    Thank you for the answer!
  4. Help! How to make key system

    I can’t say for sure, but in C++ there is a cpr library that works with HTTP requests, with the help of them we can send a key and get a response whether it is still valid.
  5. Help! ImGUI menu not showing in game

    Hi all! I'm interested to know why the ImGUI menu might not show up in some games while showing up in others. I wanted to make a mod for Russian Car Drift. But I noticed one thing ... The fact that my ImGUI menu in this game is not displayed on the phone, the menu is shown in emulators and...
  6. Solved How to find name Shader?

    LogShaders() - I just exist.
  7. Help! How covert from .xapk to .apk?

    In AndroidManifest.xml look for split and switch it to false
  8. Help! HOW TO FIX BUTTON CRASH

    I do not advise you to call something like that. Such a call is not good, it's better to create a bool that you will switch to true.
  9. Help! How to bypass the protection of the pairip verification?

    I disabled all these protections, does not help.
  10. Source Change by address in lua | Game Guardian

    Most likely, google translator does not translate correctly, I myself am from Russia and the translator most likely translates incorrectly, because your answers sound a little silly.
  11. Source Change by address in lua | Game Guardian

    I'm not saying that it's not possible, it's just that when I looked for ready-made luas on this topic, everyone gave errors. I was just too lazy to spend time writing a script
  12. Source Change by address in lua | Game Guardian

    Hello everyone! I noticed that many still have the question of how to change hex at a certain address in lib through the lua script in Game Guardian. I don't know if anyone has a really working code on this forum, but everything that I checked did not give any result, that's why I decided to...
  13. Solved Get offset field

    https://gameguardian.net/forum/topic/34044-class-name-and-field-offset-searcher/
  14. Help! how do you do this charms

    https://github.com/Oifox/Standoff2-Chams
  15. Help! Does anyone know how to do esp? And what is the easiest type of esp to do?

    ESP??? You recently asked how to capture several functions in one address...
  16. Help! 2 Fields with same update code doesn't work in my mod menu

    I didn’t know that you were so stupid not to guess before, I just didn’t pay attention to the addresses then, that they are different for you. I thought you wanted to use the same address.
  17. Help! 2 Fields with same update code doesn't work in my mod menu

    One address cannot be hooked twice, and indeed ... For example, one variable field cannot be divided into two during the game and work differently.
  18. Solved Access Argument Function / Method

    public class PlayerController : MonoBehaviour { public bool IsDead() { // Code } } public class GameManager : MonoBehaviour { private void Damage(PlayerController player, float damage) { // Code } } bool (*Player_IsDead)(void* instance); void...
  19. Help! Hooking VOID multiplier function

    if (instance && DamageMultiplier > 1) { hpDamage *= DamageMultiplier; shieldDamage *= DamageMultiplier; } It must be so, you haven't provided all the necessary arguments to the ApplyAttackDamage method yet. In the switch construction, value has an integer type, which means that it...
  20. Help! APK Mod Protection

    I just looked where the game was crashing from in the log and what crash code, googled and found something about overflow.
  21. Help! APK Mod Protection

    Yeah, I didn't see anything like that.
  22. Help! APK Mod Protection

    Thank you of course for taking the time to write such a volume of text and trying to help in general. But I knew about everything described above myself, I looked at libpairipcore.so through IDA Pro and noticed that something was overflowing, some array of objects, because of which a crash was...
  23. Help! Hooking string inside void

    Since the method is not static, you must specify the first argument of the method to the void pointer and pass there the pointer from which this method should be called.
  24. Help! CHAMS.H

    As I see you are viewing someone else's sours, at least the code that I have been viewing recently is familiar to me, you want to copy it from there and use it in your fashion. Now let's get to the most interesting part, do you want me to teach you what Ctrl+F is and how it will help in viewing...
  25. Help! VECTOR3 VELOCITY

    Hi! Earlier, when I did not get to the study of classes, I asked the same question, I advise you to study classes and structures, and with them constructors and destructors. This will help you in creating Vector3.
  26. Help! CHAMS.H

    Hello, you have a LogShaders that you call and look in the logs for the names of all shaders and look for the right one.
  27. Solved How to hook Obscured lgl mod menu

    So not everything was turned off. Games can use ObscuredInt code in separate methods to protect memory.
  28. Help! APK Mod Protection

    Thanks guys to everyone, to everyone who tried to help
  29. Help! APK Mod Protection

    I checked, it didn't help