Recent content by power2020202020

  1. 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
  2. Tutorial How to modify Set Methods in Unity's il2cpp

    use mshookfunction .. no hook_lib
  3. 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...
  4. 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...
  5. 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...
  6. Help! hooking update

    I can use this 2 class like this example is in the game update plus name of the function that will work or just works update example public void update { } nothing else written private int maxShards; // 0x78 private void UpdateMaxShards() { } 0x13FE830
  7. Help! hooking function

    bool GoldUpdates = false; void (*old_EnoughUpdate)(void *instance); void EnoughUpdate(void *instance) { if(instance != NULL) { if (GoldUpdates) { *(bool*)((uint64_t)instance + 0x8C) = true; } } old_EnoughUpdate(instance); } A64hookfunction((void *)getAbsoluteAddress("libil2cpp.so", 0x7273A2)...
  8. Help! hooking update

    So when the class doesn't have an update option, you can't do hoking void or private ?
  9. Help! hooking function

    bool GoldUpdates = false; void (*old_EnoughUpdate)(void *instance); void EnoughUpdate(void *instance) { if(instance != NULL) { if (GoldUpdates) { *(bool*)((uint64_t)instance + 0x8C) = true; } } old_EnoughUpdate(instance); } A64hookfunction((void *)getAbsoluteAddress("libil2cpp.so", 0x7273A2)...
  10. Help! hooking function

    Hello, I'm hoking my game with this function bool IsEnemy = *(bool*)((uint64_t)instance + 0x8C) But my game is not working with hoking and also my game is 32 bits I must change the ((uint64_t) to ((uint32_t) for it to work or whatever when hooking? and my cell phone is also 32 bits and not 64...
  11. Help! hooking update

    Hello, in my game there is more than one update function and I counted there are 10 lateupdate functions and 5 update functions. All the functions are different and which ones do I use when hooking void coins and crystals? Will either work? or I know the right function to work with each update I...
  12. Solved hoking void public long

    Does anyone know how to do public long hoking? I know about int, float, bool and void, I didn't find any tutorials
  13. Help! error mod works and has no effect

    Hi guys, I know how to do hoking functions and hexpatchers and what I do in the mod menu always works, it's more active as if it were visual, for example I have 2 thousand coins and I do the public int of it and the value changes with the mod to my chosen value, for example 100 thousand coins...
  14. Solved HOOK VOID

    Hello, I made a hoking void of invincibility and it worked, it only activates both sides, invincibility in my fighting game for player 1 and player 2, how do I separate it so that it activates me only on the side? My hoking is like this, I already looked for ismine and in my game there are only...
  15. Help! HOOK VOID

    [Token(Token = "0x6005FF8")] [Address(RVA = "0x18C5CF4", Offset = "0x18C5CF4", VA = "0x18C5CF4")] public void AddTotalCoins() { } // Token: 0x06005FF9 RID: 24569 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6005FF9")]...