
Mr. Hyperion
Senior Member-
Posts
302 -
Joined
-
Last visited
Everything posted by Mr. Hyperion
-
Tutorial How to have a "mini" IDA Pro on your iDevice (free)
Mr. Hyperion replied to a topic in Tutorials
T -
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
Sorry man I figured it out. I rewrote the code to look like yours and it was a big help man. I really appreciate it! Thanks -
Tool Flex Converter: Convert your flex patch to tweak code in no time!
Mr. Hyperion replied to imp0ss1ble's topic in Tools
A -
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
So how would I add setShieldOn and setGravityOn in MY tweak.xm? Here's mine... #include <UIKit/UIKit.h> %hook UserDataManager -(bool)isTrailUnlocked:(int)fp8 { return TRUE; fp8 = %orig; } -(bool)isCharacterUnlocked:(int)fp8 { return TRUE; fp8 = %orig; } -(bool)isHatUnlocked:(int)fp8 { return TRUE; fp8 = %orig; } -(bool)isPowerupUnlocked:(int)fp8 { return TRUE; fp8 = %orig; } -(bool)isWorldUnlocked:(int)fp8 { return TRUE; fp8 = %orig; } %end %hook GamePlayer -(void)setGravityOn:(bool) -(void)setShieldOn:(bool) %end %hook AppDelegate -(void)applicationDidBecomeActive:(id)argument { UIAlertView *alert = [[uIAlertView alloc] initWithTitle:@"FlappyGolf2Hack" message:@"Hacked by Sunny Patel" delegate:nil cancelButtonTitle:@"Thanks" otherButtonTitles:nil]; [alert show]; [alert release]; } %end -
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
Still not working Thanks man! I can use this for future reference. -
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
Lldb not working with port. I try to reroute the port to port 23 but lldb doesn't let me in. -
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
I need simple help with gdb. It's not giving me the address after I continue after setting watchpoint and a lose money in the game then it should freeze but it's not freezing the game. I hold ctrl-c but It still doesn't not freeze game when continuing. -
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
Sure I just want to see what you did so I can use for in future. Thanks Can I see ur tweak.xm if I could? -
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
Where can I contact you like kik? I'm still having trouble putting in a -void with 2 arguments that are NULL. This is what the tweak.xm looks like... But 1 more thing. -void isn't working for new header/target class %hook GameState -(void) player:(id) hitLaserSprite:(id) atPoint:(b2Vec2) { } %end I want to null this so the level won't restart when I hit laser so the ball will go right through. I forgot to mention that there are 2 arguments BUT they both return NULL. This is the last piece to my hack -
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
I have to erase at point and what's in the parentheses and I have to erase colon for it to compile. So what ur say is that this hook won't work in MSHook? -
isCharacterUnlocked isTrailUnlocked - Flappy Golf isPowerupUnlocked All (bool)
-
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
but it works in flex2 but it's not working even after compiling in MTerminal. What am I doing wrong? This is the only thing I'm confused on other than gdb not giving correct address -
TuT [Tutorial]How to thin your arm64 app binary to armv7 and attach to GDB
Mr. Hyperion replied to a topic in Tutorials
G -
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
But 1 more thing. -void isn't working for new header/target class %hook GameState -(void) player:(id) hitLaserSprite:(id) atPoint:(b2Vec2) { } %end I want to null this so the level won't restart when I hit laser so the ball will go right through. I forgot to mention that there are 2 arguments BUT they both return NULL. This is the last piece to my hack. -
What if I wanted to toggle switch on what's the code for thAt
-
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
Thanks so much castix. With you and diversity and ProVIP combined it helped a lot! Thanks man turns out that you ended the code with ) not } -
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
did that. I just can't pin point what's wrong. I gotta sleep so please answer here and I'll check in the morning -
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
okay thanks. Just answer here cause I'm going to sleep. Also did I mess up in the control or make file at all? -
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
still says %end doesn't make sense inside a block error -
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
#include <UIKit/UIKit.h> %hook UserDataManager -(bool)isTrailUnlocked:(int)fp8 { return TRUE; %orig(fp8); ) -(bool)isCharacterUnlocked:(int)fp8 { return TRUE; %orig(fp8); ) -(bool)isHatUnlocked:(int)fp8 { return TRUE; %orig(fp8); ) -(bool)isPowerupUnlocked:(int)fp8 { return TRUE; %orig(fp8); ) %end %hook AppDelegate -(void)applicationDidBecomeActive:(id)argument { UIAlertView *alert = [[uIAlertView alloc] initWithTitle:@"FlappyGolf2Hack" message:@"Hacked by Sunny Patel" delegate:nil cancelButtonTitle:@"Thanks" otherButtonTitles:nil]; [alert show]; [alert release]; } %end -
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
"%end doesn't make sense in block" terminal says "tweak.xm:28 error" So code is fine -
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
where do I add it? Between or top or end? -
Help/Support MSHOOKING AND FLEX HELP!
Mr. Hyperion replied to Mr. Hyperion's topic in Help & Support
Thanks shmoo. Because this is really aggravating me and your the one that inspired me to start! -
Hi I'm trying to hack Flappy Golf 2 with Flex! I made the template and did all that stuff and I will list the links to pics to show u how I cleaned it up. The problem is is that I install the hack but it's not actually applying to the game meaning that if I hacked all trails in Flex2 it would work in Flex2 but not my MSHOOK tweak! Why is this please help me! 1. https://m.imgur.com/RXINoqT 2. https://m.imgur.com/5QkMVfC 3. https://m.imgur.com/xlaeytu 4. https://m.imgur.com/IK9FDmw 5. https://m.imgur.com/KjydhYy 6. https://m.imgur.com/FskjIrX 7. https://m.imgur.com/wPL4Ccp 8. https://m.imgur.com/voL5fqi And #9 I added :(int) to show you guys that it comes up an error when I do it too (you will understand #9 if you looked at all the other pics) sorry it's not in order of sequence! 9. https://m.imgur.com/VL29ewf Please I'm begging you to help me. I followed all tutorials on iOSgods and I just don't know why/what i did wrong! Please help guys! 10. Here's the plist file just in case: http://imgur.com/LEh1252