Jump to content

Mr. Hyperion

Senior Member
  • Posts

    302
  • Joined

  • Last visited

Everything posted by Mr. Hyperion

  1. Sorry for being a little grumpy.i fixed it by rebooting but now LLDB says failed to get connection from a remote gdb process. Why is this happening when I attach game?
  2. I literally stated I have OpenSSH installed. I reinstalled it too. Ip address is 100% correct
  3. I keep getting this error when trying to ssh into my iPhone 6 form MAC terminal. "ssh: connect to host 192.168.1.7 port 22: Connection refused"! Why is this? Please help! I have OpenSSH and OpenSSL! I don't know how to fix this. On IOS 9.0.2
  4. Yes everything is right and correct from what you said
  5. I have a problem with LLDB I did everything DIDA said in his tut for LLDB on Windows. I changed the port from 22 to 23 and I made sure it was port 23 by going in ifunbox and it said the iPhone 6 is on port 23. Okay so now that I changed it, it's giving me this error, failed to attach process when I know it's the correct process because I checked in iGameGuardian. I also tried the binary name which is templerun2 (I know it's unity but I need to see if lldb works)! It still doesn't work. The problem is that it says failed to attach to process id and it says error! But I have everything proper! What am I doing wrong? Can show pic cause camera is dirty at this moment! GDB doesn't work for me so I'm trying LLDB. I have OpenSSH already Please someone help. iPhone 6 iOS 9.0.2
  6. Can someone help plz
  7. @shmoo you know about LLDB please help with just error
  8. I'm right now using port 23 on my computer but still getting error despite the pic
  9. I'm using port 23 on my computer right now and still same error despite the pic
  10. I'm not. I'm using port 23
  11. I'm literally doing that and didn't find anything!
  12. I don't have a vpn I just need LLDB to work
  13. I have a problem with LLDB I did everything DIDA said in his tut for LLDB on Windows. I changed the port from 22 to 23 and I made sure it was port 23 by going in ifunbox and it said the iPhone 6 is on port 23. Okay so now that I changed it, it's giving me this error, failed to attach process when I know it's the correct process because I checked in iGameGuardian. I also tried the binary name which is templerun2 (I know it's unity but I need to see if lldb works)! It still doesn't work. GDB doesn't work for me so I'm trying LLDB. I have OpenSSH already Please someone help. iPhone 6 iOS 9.0.2 Image: http://imgur.com/W8bVFk5
  14. Doesn't work for me and I followed ur tutorial 100% and I also have theos installed correctly
  15. 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
  16. 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
  17. Still not working Thanks man! I can use this for future reference.
  18. Lldb not working with port. I try to reroute the port to port 23 but lldb doesn't let me in.
  19. 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.
  20. 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?
  21. 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
×
  • 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