-
Posts
2,778 -
Joined
-
Last visited
Everything posted by Patricktph
-
Help/Support Can't download iosddl files
Patricktph replied to FaithfulFires's topic in Help & Support
If your using safari Try clearing your history by going to the settings> safari > Clear History And Website Data -
Idk if I should private message him his probably gonna get pissed but ey thanks for all your help man you awesome
-
I have to ask this so I don't ask later .. But how would you put like 3 codes or more that make up a hack in one switch like this code below how would I put it in one switch %hook MagicSubscriptionManager -(bool) isActive { return true; } -(bool) isSubscriptionActive { return true; } -(bool) expireAtValid { return true; } %end
-
likes this <key>items</key> <array> <dict> <key>cell</key> <string>PSGroupCell</string> <key>footerText</key> <string>Magic Piano Cheats</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <true/> <key>defaults</key> <string>ptest</string> <key>key</key> <string>kPlan</string> <key>label</key> <string>Always perfect</string> </dict> </array> <key>title</key> <string>ptest</string> </dict> </plist>
-
So this but just add the new hack ? <key>items</key> <array> <dict> <key>cell</key> <string>PSGroupCell</string> <key>footerText</key> <string>Magic Piano Cheats</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <true/> <key>defaults</key> <string>ptest</string> <key>key</key> <string>kPlan</string> <key>label</key> <string>Always perfect</string> </dict>
-
Hack Deezer hack [Premium Account] [V 6.6.0]
Patricktph replied to ashiltawi's topic in Free Jailbreak Cheats
Testing -
yay. that worked how can i add more switches for different hacks but with the same app
-
Yeah here is my tweak.xm #define PLIST_PATH @"/var/mobile/Library/Preferences/ptest.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %hook MagicPerformanceStats -(bool) isPerfect { if(GetPrefBool(@"kPlan")) { return true; } return %orig; } %end And this is my plist <?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>Magic Piano Cheats</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <true/> <key>defaults</key> <string>com.techprohacker.ptest</string> <key>key</key> <string>kPlan</string> <key>label</key> <string>Always perfect</string> </dict> </array> <key>title</key> <string>ptest</string> </dict> </plist>
-
If it says it's finished with result code 0 that's a good thing that means there's no errors Bu ready this topic it might help you out https://iosgods.com/topic/32809-how-to-easily-fix-old-deb-hacks-on-ios-93-and-higher/
-
I just tried to turn on and off and tried to respring still got nothing
-
Yeah I did
-
I got the hack switch in my settings but when I turn it on or off it doesn't do anything in the app but Normaly with out the switch for on and off it works.. THIS IS MY TWEAK.xm #define PLIST_PATH @"/var/mobile/Library/Preferences/ptest.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %hook MagicPerformanceStats -(bool) isPerfect { if(GetPrefBool(@"kPlan")) { return true; } return %orig; } %end AND THIS IS MY Plist <?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>Magic Piano</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <true/> <key>defaults</key> <string>com.techprohacker.ptest</string> <key>key</key> <string>kPlan</string> <key>label</key> <string>VIP ACCESS</string> </dict> </array> <key>title</key> <string>ptest</string> </dict> </plist>
-
Yea, but I have a question what if I want to add it to more switches Yes but I still have one question if I want to make more than 1 switching an just add this if(GetPrefBool(@"kPlan")) { before return then and add the %orig;
-
Help/Support Another compiling error making for a preference bundle
Patricktph replied to Patricktph's topic in Help & Support
Okay it worked I got I switch in my settings but I'm not sure if it actually works I will have to test it.. Thank you so Much DIDA (aka) The BOSS;) -
Help/Support Another compiling error making for a preference bundle
Patricktph replied to Patricktph's topic in Help & Support
So then after that I'm going to be left with the headers do I copy them and paste them into /var/theos/include too? -
Help/Support Another compiling error making for a preference bundle
Patricktph replied to Patricktph's topic in Help & Support
When I installed the headers I clicked unarchiver then it installed but then it made a another folder called "include" with headers and some other folders in it. So idk what you mean by "correct Extract them there" installed the headers I clicked unarchiver then it installed but then it made a another folder called "include" with headers and some other folders in it. So idk what you mean by "correct Extract them there" -
Help/Support Another compiling error making for a preference bundle
Patricktph replied to Patricktph's topic in Help & Support
So do I paste this headers in/ var/theos/include. ? -
It says it's not in the .h file but it's there Compiling ptest.mm... In file included from ptest.mm:1: ./ptest.h:1:9: fatal error: 'Preferences/Preferences.h' file not found #import <Preferences/Preferences.h> ^ 1 error generated. make[3]: *** [obj/ptest.mm.d96b3db5.o] Error 1 make[2]: *** [internal-bundle-all_] Error 2 make[1]: *** [ptest.all.bundle.variables] Error 2 make: *** [internal-all] Error 2 iPhone:/var/mobile/magicpiano root# THIS IS THE CODE THAT IS PASTED IN THE .h #import <Preferences/Preferences.h> @interface ptestListController: PSListController { } @end
-
Welcome! What's good:)
-
Welcome to Awesome,helpful IG
-
Introduction A very late introduction.
Patricktph replied to IronFury's topic in Member Introductions
Hey, welcome -
Introduction Hello, I'm ZeroCool :D
Patricktph replied to ZeroCool111's topic in Member Introductions
Welcome to IG -
Welcome.
-
Welcome
-
Do I paste The whole thing into Tweak.xm ?