Jump to content

HxR

Member
  • Posts

    20
  • Joined

  • Last visited

Everything posted by HxR

  1. I loved the movie and I give it a 9.5/10. just needed some flashbacks of the villain and how she knows who Dom is and how she spied on him. Otherwise I loved how Owen shaw comes back. It was that good that I might have to get it on disc or even watch it another time in theaters
  2. I'm making a hack with preference bundle and I keep getting the error when compiling : %end doesn't make sense inside a block. tweak.xm: #import <UIKit/UIKit.h> #import <substrate.h> #import <Foundation/Foundation.h> #define PLIST_PATH @"/var/mobile/Library/Preferences/com.sunny.poucheats.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %hook Coins -(int)have { if(GetPrefBool(@"key1")) { return 987654321; } return %orig; } %end %hook Coins -(int)spent { if(GetPrefBool(@"key2")) { return 0; } return %orig; } %end %hook Coins -(int)cheated { if(GetPrefBool(@"key3")) { return 0; } return %orig; } %end %hook State -(int)setLevel { if(GetPrefBool(@"key4")) { return 270; } return %orig; } %end %hook State -(void)setHungry:(bool)argument { if(GetPrefBool(@"key5")) { argument = false; } return %orig; } %end %hook AppDelegate -(BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { UIAlertView *credits = [[UIAlertView alloc] initWithTitle:@"Pou Cheats!" message:@"Made by Sunny Patel" delegate:self cancelButtonTitle:@"Thanks" otherButtonTitles:@"Subscribe to My Channel!", nil]; [credits show]; [credits release]; %orig(); } %new -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { NSString *button = [alertView buttonTitleAtIndex:buttonIndex]; if([button isEqualToString:@"Subscribe to My Channel!"]) { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.youtube.com/StarSunSunny"]]; } %end plist for preference bundle: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>items</key> <array> <dict> <key>cell</key> <string>PSGroupCell</string> <key>footerText</key> <string>A Lot of Coins</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.sunny.poucheats</string> <key>key</key> <string>key1</string> <key>label</key> <string>ManyCoins</string> </dict> <dict> <key>cell</key> <string>PSGroupCell</string> <key>footerText</key> <string>No Coins Spent</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.sunny.poucheats</string> <key>key</key> <string>key2</string> <key>label</key> <string>NoSpendingCoins</string> </dict> <dict> <key>cell</key> <string>PSGroupCell</string> <key>footerText</key> <string>No Cheat Detection MUST BE TURNED ON!!!!!!</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.sunny.poucheats</string> <key>key</key> <string>key3</string> <key>label</key> <string>NoCheatDetection</string> </dict> <dict> <key>cell</key> <string>PSGroupCell</string> <key>footerText</key> <string>High Level</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.sunny.poucheats</string> <key>key</key> <string>key4</string> <key>label</key> <string>HighLevel</string> </dict> <dict> <key>cell</key> <string>PSGroupCell</string> <key>footerText</key> <string>Pou is Not Hungry</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.sunny.poucheats</string> <key>key</key> <string>key5</string> <key>label</key> <string>PouNotHungry</string> </dict> <dict> <key>cell</key> <string>PSGroupCell</string> </dict> <dict> <key>cell</key> <string>PSTextCell</string> <key>label</key> <string>Made by Sunny Patel.</string> </dict> <dict> <key>action</key> <string>link</string> <key>cell</key> <string>PSButtonCell</string> <key>icon</key> <string>[email protected]</string> <key>label</key> <string>Subscribe to My Channel!</string> </dict> </array> <key>title</key> <string>Pou Cheats</string> </dict> </plist>
  3. What kinds of games should I hack like easy or medium either using ida/gdb/lldb or just Ida/strings. Please give me atleast 2 or 3 games. Thank you also to not create another post, how to breakpoint? Because I can't find a tut on here that explains or shows example of it. Please help guys. Or link me to a post that I can't find. Thank you iPhone 6 iOS 9.0.2 @ZahirSher @shmoo
  4. How can I create a patcher that allows the user to input however many gems or coins they want for the game? Like is there a way to do that because I can't find a tut about it on iOSgods. Please help
  5. What games that are easy to medium should I hack? Like with strings or MSHOOK or lldb. Please give me atleast 2 or 3.
  6. I have iPhone 6 iOS 9.0.2 arm64 (of course). For watchpoints: Will gdb work on it or should I use lldb for watchpoints? For breakpoints: gdb or lldb? Please help also I need little clarification on breakpoints like an example maybe please?
  7. I already tried that buddy but none of the tutorials work
  8. Where can I find GamePlayer that works on iOS 9.0.2? Please link me.
  9. Re read again
  10. Does this auto lipo template: Does it Automatically sign the ASLR removed binary when I put the ASLR removed binary into the "binary" folder? And then compile? Or do I sign it myself and then compile?? @Joka @Diversityy
  11. how do people learn objective c/c++ and keep it in mind or fully understand it??? how do people know what code to write exactly? are there any tuts that explain objC and arm64 and armv7 and c++ fully??
  12. Ida and saved the changes or I could just find offsets?
  13. What do you mean by implement it as a tweak? does ASLR not matter? I am confused bro
  14. Ok so I remove ASLR iOS 9 and hacked game, but how to put together as a hack? Like what do I do about signing binary when putting together the patcher? Is there auto sign or something? Or is there template that does this? Please help.
×
  • 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