Search results

  1. Solved Crash when drawing (esp)

    Game used (For testing): Granny v1.8.1 | 32 Bit Currently trying to make an esp but keep crashing when trying to draw it. I've been trying to fix it for the past 6 hours but can't find the problem, i'll try to fix it again but any help will be appreciated. I'll give the files that is modified...
  2. Help! Spoofing nickname on photon games

    Is it possible to spoof nickname on photon games? I already tried using How to modify Unity's Il2cpp String method's - Platinmods.com - Android & iOS MODs, Mobile Games & Apps ARM64 Unity String Function Hooking LGL Menu - Platinmods.com - Android & iOS MODs, Mobile Games & Apps To hook the...
  3. Solved How to hook field offset with no update function?

    I want to hook a bool field offset but the class doesn't have any update function, and there is no classes it uses that have reference to it that have a update function. Well there is one class that have reference to it and have a update function but it only works when on "Project Mode", so it...
  4. Solved How to restore field offset original value?

    Is there a way to restore this field offset original value when the toggle is off? bool isUnlimitedFlashbang; void (*old_playerToolsSection)(void *instance); void playerToolsSection(void *instance) { if (instance != NULL) { if (isUnlimitedFlashbang) { *(int *)...