Recent content by CHEATS GAMES

  1. Help! How to generate the module for this zygisk imgui modmenu based on LGL?

    Olá, encontrei este módulo no Github, ele é baseado no LGL modmenu, é um módulo zygisk, ele constrói apk mas quando clico em make project ele funciona mas não cria o módulo zygisk, alguém sabe o que fazer? link: MediaFire
  2. Tutorial None Rooted Android - FRIDA API Set Up and Injection (Hook,Unity)

    Great, if possible, make a tutorial using devices routed with magisk, I always get the error Failed to spawn: need Gadget to attach on jailed Failed to spawn: unexpectedly timed out while waiting for signal from process PID
  3. Tutorial How to Create Zygisk MOD Menu

    my menu causes a change in the game's resolution causing the game to crash how to fix this
  4. Help! zygisk module not loaded due to incompatibility emulator

    Hello, does anyone know how to solve this incompatibility problem in the emulator for the zygisk module? ex I delete all the libs and leave only arm64-v8a.so, android is x64 and I still have this error.
  5. Help! how to modify in safefloat ?

    how to modify in safefloat ? i have a game that uses safe float instead of obscuredfloat, how can i modify in safe float? here is safefloat code using System; using Il2CppDummyDll; namespace JarviGames.Utils { // Token: 0x02000005 RID: 5 [Token(Token = "0x2000005")] public struct...
  6. Help! How to change Slidervalue to be Negative?

    I have a game that jumpheight only works by changing it to negative , how can I change it so that the slidervalue works with negative numbers ?
  7. Help! How Modif a GET/SET Obscured in ARMv7/ARM64v8

    I already tried with static but it doesn't work for me either
  8. Help! I'm Learning to Hook. (HELP)

    void(*orig_Update)(void *instance); void Update(void* instance) { if (instance != nullptr) { if (hack2) return true; } else { return false; } } orig_Update(instance); // dont use return on void function }