Jump to content

I need help with my hook please!!!


Go to solution Solved by AlyssaX64,

11 posts in this topic

Recommended Posts

Posted (edited)

I just started leaning hook. and i successfully hook a float method with no parameter with return value.

But Now i am trying to hook method with multiple parameters but it give me game crash i dont know what i am doing wrong and thats why i am help seeking help.
First let me share offsets of those method:
 

// BasePlayerController
// Token: 0x06002418 RID: 9240 RVA: 0x0000C02C File Offset: 0x0000A22C
[Token(Token = "0x6002418")]
[Address(RVA = "0xF3B4A8", Offset = "0xF3B4A8", VA = "0xF3B4A8")]
[IDTag(1)]
public bool FastChangeAnimatorStates(int layer, int stateHash, bool allowReplay = false, float normalizedTime = 0f)
{
    return default(bool);
}

// BasePlayerController
// Token: 0x060023FA RID: 9210 RVA: 0x00002066 File Offset: 0x00000266
[Token(Token = "0x60023FA")]
[Address(RVA = "0xF38F8C", Offset = "0xF38F8C", VA = "0xF38F8C", Slot = "9")]
protected virtual void LateUpdate()
{
}



i am using those above method and their offsets. here is my code:

bool (*FastChangeAnimatorStates)(void *, int layer, int stateHash, bool allowReplay, float normalizedTime) = (bool (*)(void *, int, int, bool, float))getRealOffset(0xF3B4A8);

    void (*old_lateUpdate)(void *myplayer);
    void lateUpdate(void *myplayer){
        if (myplayer != NULL){

            //test2 is a button for activating i am using batchh modmenu
            if (test2){
                FastChangeAnimatorStates(myplayer, 0, 531867845, true, 0.f);
            }
        }
        return old_lateUpdate(myplayer);
    }

 

this is in another file  where i add hook. again i am using batchh modmenu from here iosgods
 

  static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        //here add your hooks.

        HOOK(0xF38F8C, lateUpdate, old_lateUpdate);
   
    });


 please check if anything wrong with my code or idk.
 please any help is appreciated . thanks in advance

Updated by RehmanAfridi
  • Solution
Posted


 void (*old_lateUpdate)(void *_this);
 void lateUpdate(void *_this){
   
      bool (*FastChangeAnimatorStates)(void *, int layer, int stateHash, bool allowReplay, float normalizedTime) = (bool (*)(void *, int, int, bool, float))getRealOffset(0xF3B4A8);
   

            if (test2){
                FastChangeAnimatorStates(myplayer, 0, 531867845, true, 0.f);
            }
        }
         old_lateUpdate(_this);
    }

@RehmanAfridi try it like this!!!

Posted

The hook doesn’t have any problem, you can also try HOOK_DOPA if you are on rootless, also be sure the code is correct, try using Alyssa one

Posted
1 hour ago, batchh said:

The hook doesn’t have any problem, you can also try HOOK_DOPA if you are on rootless, also be sure the code is correct, try using Alyssa one

I have uncover jailbreak. iOS Version 14.3

2 hours ago, AlyssaX64 said:

try it like this!!!

let me try now

Posted (edited)
2 hours ago, AlyssaX64 said:
 FastChangeAnimatorStates(myplayer, 0, 531867845, true, 0.f);

@AlyssaX64 first parameter "myplayer" shouldnt this be _this  bcoz it give me error "use of undecleared identifier"? sorry i am still learning.  

Updated by RehmanAfridi
Posted
12 minutes ago, RehmanAfridi said:

@AlyssaX64 first parameter "myplayer" shouldnt this be _this  bcoz it give me error "use of undecleared identifier"? sorry i am still learning.  

i have used it like this and it worked thanks you
 

 void (*old_lateUpdate)(void *_this);
 void lateUpdate(void *_this){
   
      bool (*FastChangeAnimatorStates)(void *, int layer, int stateHash, bool allowReplay, float normalizedTime) = (bool (*)(void *, int, int, bool, float))getRealOffset(0xF3B4A8);
   

            if (test2){
                FastChangeAnimatorStates(_this, 0, 531867845, true, 0.f);
            }
         old_lateUpdate(_this);
    }

 

Posted
52 minutes ago, RehmanAfridi said:

i have used it like this and it worked thanks you
 

 void (*old_lateUpdate)(void *_this);
 void lateUpdate(void *_this){
   
      bool (*FastChangeAnimatorStates)(void *, int layer, int stateHash, bool allowReplay, float normalizedTime) = (bool (*)(void *, int, int, bool, float))getRealOffset(0xF3B4A8);
   

            if (test2){
                FastChangeAnimatorStates(_this, 0, 531867845, true, 0.f);
            }
         old_lateUpdate(_this);
    }

 

Doesn't matter if you use _this , _That or _myplayer . make sure it's same

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below. For more information, please read our Posting Guidelines.
Reply to this topic... Posting Guidelines

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Our picks

    • Puzzles & Passports: Match 3 v1.29.1 [ +5 Cheats ] Auto Win
      Modded/Hacked App: Puzzles & Passports: Match 3 By Big Fish Games, Inc
      Bundle ID: com.bigfishgames.tc.match3.puzzles.ios
      iTunes Store Link: https://apps.apple.com/us/app/puzzles-passports-match-3/id6468675988?uo=4
       

      Hack Features

      - Auto Win [ Just Hit Target ]

      - Stars

      - Lives Inf

      - Moves

      - Booster 


      For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      • 7 replies
    • Puzzles & Passports: Match 3 v1.29.1 [ +5 Jailed ] Auto Win
      Modded/Hacked App: Puzzles & Passports: Match 3 By Big Fish Games, Inc
      Bundle ID: com.bigfishgames.tc.match3.puzzles.ios
      iTunes Store Link: https://apps.apple.com/us/app/puzzles-passports-match-3/id6468675988?uo=4

       

       

      Mod Requirements

      - Non-Jailbroken/Jailed or Jailbroken iPhone or iPad.
      - Sideloadly or alternatives.
      - Computer running Windows/macOS/Linux with iTunes installed.

       

      Hack Features

      - Auto Win [ Just Hit Target ]

      - Stars

      - Lives Inf

      - Moves

      - Booster 


      Jailbreak required iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APKs: https://iosgods.com/forum/68-android-section/
      • 6 replies
    • Space M Defense: Space Shooter v2.0.22 [ +8 Jailed ] Currency Max
      Modded/Hacked App: Space M Defense: Space Shooter By Clegames, Inc.
      Bundle ID: com.td.marine
      iTunes Store Link: https://apps.apple.com/us/app/space-m-defense-space-shooter/id6466787757?uo=4


      🤩 Hack Features

      - Crystal

      - Gold

      - Energy

      - HP

      - ATK

      - Critical ATK

      - HP Recovery

      - DMG DC

      Breakable Cheats Gold & Ability
      • 2 replies
    • Space M Defense: Space Shooter v2.0.22 [ +8 Cheats ] Currency Max
      Modded/Hacked App: Space M Defense: Space Shooter By Clegames, Inc.
      Bundle ID: com.td.marine
      iTunes Store Link: https://apps.apple.com/us/app/space-m-defense-space-shooter/id6466787757?uo=4


      🤩 Hack Features

      - Crystal

      - Gold

      - Energy

      - HP

      - ATK

      - Critical ATK

      - HP Recovery

      - DMG DC

      Breakable Cheats Gold & Ability
      • 1 reply
    • Nighty Knight: Frontier War TD v1.0.47 [ +9 Jailed ] Currency Max
      Modded/Hacked App: Nighty Knight: Frontier War TD By Pusilung HK Limited
      Bundle ID: com.ezg011.empire.war.td.strategy.tower.defend.game
      iTunes Store Link: https://apps.apple.com/us/app/nighty-knight-frontier-war-td/id6740115606?uo=4


      🤩 Hack Features

      - Currency Unlimited [ Earns Some ] Show 0 - NaN But Works

      - Resources Unlimited [ Earns Some ] Show 0 - NaN But Works

      - Energy Cost 0 

      - Hp [ Equip Status Check ]

      - DMG [ Equip Status Check ]

      - Tower Cost

      - Silver Coins [ Build Tower ]

      - Enemy Max 1

      - Enemy Freeze
      • 19 replies
    • Nighty Knight: Frontier War TD v1.0.47 [ +9 Cheats ] Currency Max
      Modded/Hacked App: Nighty Knight: Frontier War TD By Pusilung HK Limited
      Bundle ID: com.ezg011.empire.war.td.strategy.tower.defend.game
      iTunes Store Link: https://apps.apple.com/us/app/nighty-knight-frontier-war-td/id6740115606?uo=4

       

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Sileo, Cydia or Zebra).

       

      🤩 Hack Features

      - Currency Unlimited [ Earns Some ] Show 0 - NaN But Works

      - Resources Unlimited [ Earns Some ] Show 0 - NaN But Works

      - Energy Cost 0 

      - Hp [ Equip Status Check ]

      - DMG [ Equip Status Check ]

      - Tower Cost

      - Silver Coins [ Build Tower ]

      - Enemy Max 1

      - Enemy Freeze

       

      ⬇️ iOS Hack Download Link


      Hidden Content

      Download Hack
      • 34 replies
    • Dream Master-Travel Puzzle  v3.03 [ +5 Cheats ] Auto Win
      Modded/Hacked App: Dream Master-Travel Puzzle By F.O.G LIMITED
      Bundle ID: com.match.busters.free.ios
      iTunes Store Link: https://apps.apple.com/us/app/dream-master-travel-puzzle/id6636480682?uo=4


      🤩 Hack Features

      - Auto Win

      - Coins [ Disable After Hack ]

      - Stars [ Disable After Hack ]

      - Lives 0 Play Unlimited

      - Booster


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      🤖 Modded Android APKs: https://iosgods.com/forum/68-android-section/
      • 3 replies
    • Dream Master-Travel Puzzle  v3.03 [ +5 Jailed ] Auto Win
      Modded/Hacked App: Dream Master-Travel Puzzle By F.O.G LIMITED
      Bundle ID: com.match.busters.free.ios
      iTunes Store Link: https://apps.apple.com/us/app/dream-master-travel-puzzle/id6636480682?uo=4

       

      🤩 Hack Features

      - Auto Win

      - Coins [ Disable After Hack ]

      - Stars [ Disable After Hack ]

      - Lives 0 Play Unlimited

      - Booster


      🍏 Jailbreak iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      🤖 Modded Android APKs: https://iosgods.com/forum/68-android-section/

       

      ⬇️ iOS Hack Download IPA Link


      Hidden Content

      Download via the iOSGods App
      • 5 replies
    • Backpacker™ Go! v1.4.1 [ +3 Cheats ] Dice Unlimited
      Modded/Hacked App: Backpacker™ Go! By Qiiwi Games AB
      Bundle ID: com.qiiwi.backpackergo
      iTunes Store Link: https://apps.apple.com/us/app/backpacker-go/id6478389736?uo=4


      Hack Features:
      - ADS NO [ Between Playing ] 
      - Cash Unlimited [ This Hack Linked Other Items - Ticket Exp Etc. Use Only Cash ] Use Another Items Maybe Game Freeze But Works  
      - Dice Unlimited



      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 15 replies
    • Backpacker™ Go! v1.4.1 [ +3 Jailed ] Dice Unlimited
      Modded/Hacked App: Backpacker™ Go! By Qiiwi Games AB
      Bundle ID: com.qiiwi.backpackergo
      iTunes Store Link: https://apps.apple.com/us/app/backpacker-go/id6478389736?uo=4



      Hack Features:
      - ADS NO [ Between Playing ] 
      - Cash Unlimited [ This Hack Linked Other Items - Ticket Exp Etc. Use Only Cash ] Use Another Items Maybe Game Freeze But Works  
      - Dice Unlimited 


      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 16 replies
    • CHASERS: Hack & Slash RPG v100.000.1240 +2 Jailed Cheats [ No Skill CD ]
      Modded/Hacked App: CHASERS: Hack & Slash RPG By LIFULSE Inc.
      Bundle ID: com.lifulse.chasers
      iTunes Store Link: https://apps.apple.com/us/app/chasers-hack-slash-rpg/id6739602674?uo=4

       


      🤩 Hack Features

      - No Skill Cooldown
      - No Skill Cost
        • Like
      • 22 replies
    • CHASERS: Hack & Slash RPG v100.000.1240 +2 Cheats [ No Skill CD ]
      Modded/Hacked App: CHASERS: Hack & Slash RPG By LIFULSE Inc.
      Bundle ID: com.lifulse.chasers
      iTunes Store Link: https://apps.apple.com/us/app/chasers-hack-slash-rpg/id6739602674?uo=4

       
       

      🤩 Hack Features

      - No Skill Cooldown
      - No Skill Cost
      • 9 replies
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines