
HxR
Member-
Posts
20 -
Joined
-
Last visited
Everything posted by HxR
-
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
-
Help/Support %end doesn't make sense inside a block (help please)
HxR replied to HxR's topic in Help & Support
Line 76 -
Help/Support Suggestions for Games to hack (Easy or Medium Please)
HxR replied to HxR's topic in Help & Support
Strings or lldb? -
Help/Support %end doesn't make sense inside a block (help please)
HxR posted a topic in Help & Support
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> -
Help/Support Suggestions for Games to hack (Easy or Medium Please)
HxR posted a topic in Help & Support
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 -
Help/Support User can input number of gems they want (PLEASE READ)
HxR replied to HxR's topic in Help & Support
Thank you -
Help/Support User can input number of gems they want (PLEASE READ)
HxR posted a topic in Help & Support
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 -
What games that are easy to medium should I hack? Like with strings or MSHOOK or lldb. Please give me atleast 2 or 3.
-
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?
-
I already tried that buddy but none of the tutorials work
-
Coupon With Easter around the corner, so are coupons!
HxR replied to Klepto 's topic in Forum Announcements
Are you girl or boy? -
Where can I find GamePlayer that works on iOS 9.0.2? Please link me.
-
How the f**k??!!?
-
Re read again
-
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
-
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??
-
Ida and saved the changes or I could just find offsets?
-
What do you mean by implement it as a tweak? does ASLR not matter? I am confused bro
-
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.