Jump to content

Mr. Hyperion

Senior Member
  • Posts

    302
  • Joined

  • Last visited

Everything posted by Mr. Hyperion

  1. 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
  2. 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
  3. Still not working Thanks man! I can use this for future reference.
  4. Lldb not working with port. I try to reroute the port to port 23 but lldb doesn't let me in.
  5. 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.
  6. 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?
  7. 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
  8. 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?
  9. isCharacterUnlocked isTrailUnlocked - Flappy Golf isPowerupUnlocked All (bool)
  10. 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
  11. 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.
  12. What if I wanted to toggle switch on what's the code for thAt
  13. 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 }
  14. 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
  15. okay thanks. Just answer here cause I'm going to sleep. Also did I mess up in the control or make file at all?
  16. still says %end doesn't make sense inside a block error
  17. #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
  18. "%end doesn't make sense in block" terminal says "tweak.xm:28 error" So code is fine
  19. where do I add it? Between or top or end?
  20. Thanks shmoo. Because this is really aggravating me and your the one that inspired me to start!
  21. 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
×
  • 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