Recent content by power2020202020

  1. Help! Error Google加固 Protection

    Hello, I can't use the mod menu in my game anymore because it was updated and they added this anti-hack and when I go to play, it asks for an update via the Playstore and the mod menu comes out and the game updates. Is there any way to make it work using a virtual cell phone like VMOS or...
  2. Help! Error modmenu

    Hello, the icon for my mod menu does not appear in the game I put it in. I do the same procedure in another game and it works, but the game that works in the folder is called unity3d, but the other game folder is called unity3d.player. I do everything the same as android manifest before the...
  3. Help! NO UPDATE FUNCTION

    I didn't understand? Which one should I look for?
  4. Help! NO UPDATE FUNCTION

    My video playing normally without the hack, the damage deal is based on the enemy's blood, but I've already changed it and the offset of this function is only visual, and the same final damage is still produced even though the blood changes in the enemy's blood bar hud. link google drive...
  5. Help! NO UPDATE FUNCTION

    Hello, I can't find an update for this 2nd class because it doesn't exist in her class. There's a hacker who makes this hack and only sells the hack. I wanted to learn it without making a mod menu. I just can't find an update for this damagedealt function. I have a photo of how it works and a...
  6. Help! no update function

    Hello, I wanted to change the damage percentage of the game I play, but the class has no update. The functions I wanted to change are damagedealt, damagedealtpercent, rewardmultiplier. They are all public but are inside the fields class. How do I fix this? My game uses damage dealt to gain rank...
  7. Help! mod menu error

    Hello, I wanted to understand that my mod menu is working normally until the previous version of my game, but then I updated the game and updated the mod menu and it works with Bluestacks normally, but on my rooted cell phone and on my vgphone it doesn't install, it's not compatible and when I...
  8. Help! ERROR TOGGLE

    Thanks, the problem was using boolean instead of the other damageonehit.
  9. Help! ERROR TOGGLE

    Hello, I have a problem with my toggle activator. My hooking works fine in the game, but the activator is always on, even when I turn it off in my mod menu. The damage always stays at 9999999. In fact, it already starts with the damage set to 9999999, even with the toggle turned off. I'll post...
  10. Help! dump file with protection

    hello i am trying to hack 2 games but after i extract with apktool i go to use imagemgui and put libil2cpp and merdata the dump.cs file does not generate because it says the file is protected how to extract libil2cpp.so that it has protection so i can use the dump.cs file of the game games I...
  11. Help! create paid lgl menu mod

    Hi guys, I know how to make a mod menu but my mod menu is free I wanted to know how to make a paid mod menu so I only want certain people to have access besides me, example mod menu with serial number or password
  12. Tutorial How to modify Set Methods in Unity's il2cpp

    use mshookfunction .. no hook_lib
  13. Discussion no update function

    Hello, I know how to do hooking with update but I have a game that in its class there is no update to connect a function maximum private field I found was this 2 similar in the same class but I did hooking and it didn't work does anyone have any tips when there is no function update in the same...
  14. Help! hooking update

    bool goldss = false; bool shardss = false; void(*old_Golds)(void *instance); void Golds(void *instance) { if(instance != NULL) { if (goldss) { *(int *) ((uint64_t) instance + 0x18) = 100000; *(int *) ((uint64_t) instance + 0x12AD11C) = 100000; } } old_Golds(instance); } void(*old_shards)(void...
  15. Help! hooking update

    I tested it and it didn't work so I always have to use the update from the same class because these were from different classes... I can only get an update from the same class or this update could be hidden in a different class or the codestage doesn't let the hack work? because there are many...
Back
Top Bottom