-
Posts
1,324 -
Joined
-
Last visited
Everything posted by bR34Kr
-
Updated Hack: Counter Attack Multiplayer FPS By Martin Grigorov v1.1.92 com.mgrigorov.3dShooter Requires: iOS 8.0 or later. Price: Free Updated: 2018-02-03T19:33:34Z iTunes URL: https://itunes.apple.com/us/app/counter-attack-multiplayer-fps/id1072738097?mt=8&uo=4&at=1010lce4 Mod Requirements: - Jailbroken iPhone/iPad/iPod Touch. - iFile / Filza / iFunBox / iTools or any other file managers for iOS. - Cydia Substrate (from Cydia). - PreferenceLoader (from Cydia). Hack Features: - No Gravity -- Hold jump button to get high! - No Recoil 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/ Hack Download Link: [Hidden Content] Does not work on iOS 11 Installation Instructions: STEP 1: Download the .deb Cydia hack file from the link above. STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice. STEP 3: Using iFile or Filza, browse to where you saved the downloaded .deb file and tap on it. STEP 4: Once you tap on the file, you will then need to press on 'Installer' or 'Install' from the options on your screen. STEP 5: Let iFile / Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below. STEP 6: Now open your iDevice settings and scroll down until you see the settings for this cheat and tap on it. If the hack is a Mod Menu, the cheat features can be toggled in-game. STEP 7: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game. NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues. Credits: - @bR34Kr Cheat Video/Screenshots:
- 105 replies
-
- 237
-
-
-
-
-
-
-
It tells me "Not Activated". Is it normal?
-
Critical Ops By Critical Force Oy v0.9.13 com.criticalforceentertainment.criticalops Requires: iOS 10.0 or later. Price: Free Updated: 2018-04-28T05:42:34Z iTunes URL: https://itunes.apple.com/us/app/critical-ops/id1017717218?mt=8&uo=4&at=1010lce4 Mod Requirements: - Jailbroken iPhone/iPad/iPod Touch. - iFile / Filza / iFunBox / iTools or any other file managers for iOS. - Cydia Substrate (from Cydia). - PreferenceLoader (from Cydia). Hack Features: - No Gravity - No Flashbang - No Recoil -- Might not work on certain guns - No Spread -- Might not work on certain guns - Crosshair on Sniper 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/ Warning I am not responsible for any bans using this hack. Use it at your own risk. Hack Download Link: [Hidden Content] Tip There is a security/anti cheat collision layer, so try not jumping too high or it'll kill you Installation Instructions: STEP 1: Download the .deb Cydia hack file from the link above. STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice. STEP 3: Using iFile or Filza, browse to where you saved the downloaded .deb file and tap on it. STEP 4: Once you tap on the file, you will then need to press on 'Installer' or 'Install' from the options on your screen. STEP 5: Let iFile / Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below. STEP 6: Now open your iDevice settings and scroll down until you see the settings for this cheat and tap on it. If the hack is a Mod Menu, the cheat features can be toggled in-game. STEP 7: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game. NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues. Credits: - @bR34Kr Cheat Video/Screenshots:
- 93 replies
-
- 59
-
-
-
-
-
-
-
It's already unlocked. At least add a few returns and say SPOILER ALERT
-
Use this Rather than the [hide] tags since it's already unlocked so anyone can read it
-
Mod Menu Hack [x64] DC: UNCHAINED v1.1.0 +2 Cheats [No Skill Cooldown]
bR34Kr replied to Joka's topic in Free Jailbreak Cheats
Good job -
Help/Support Can I bind a function from the binary to a UIButton?
bR34Kr replied to bR34Kr's topic in Help & Support
No because I made the button. I know I would use a OnButtonTapped or something but since the button isn't in the binary I don't know how to make it work. Basically a Obj-C (Flex) button I want to bind with the binary. -
Help/Support Can I bind a function from the binary to a UIButton?
bR34Kr posted a topic in Help & Support
I made a new in-game UIButton and wanted to bind a function from the binary each time you tapped it. Is it possible? -
Does it look similar to this?
-
What are the permissions for the bin folder?
-
Help/Support What if the game doesn't have Meta-data ?
bR34Kr replied to Demi-God's topic in Help & Support
You need to debug with LLDB. Ted's TuT explains it well -
RET is return. It will return nothing so it'll be 0
-
float (*getGravity)(void *_this); float _getGravity(void *_this){if([TextfieldHook getTextfieldValueForHook:@"Gravity Edit"] != nil){ return [[TextfieldHook getTextfieldValueForHook:@"Gravity Edit"] floatValue]; } return getGravity(_this); } ... addTextfieldHook(@"Gravity Edit", @"Edit Gravity", font, 0xstartofthefunction, (void *)_getGravity, (void *)getGravity); int val = [[TextfieldHook getTextfieldValueForHook:@"Gravity Edit"] intValue]; float val = [[TextfieldHook getTextfieldValueForHook:@"Gravity Edit"] floatValue]; All code is in the good place. I took the README as an example
-
Hey! I'm using shmoo's MM and wanted to do a textfield hook. I didn't understand that well but I put the function's offset and used the good code but the game crashed once I tried executing the button (Changed jump button to a branch to my function)