
kevindurant35
Senior Member-
Posts
256 -
Joined
-
Last visited
Everything posted by kevindurant35
-
thank u mate
-
DIY Hack FREE INSTAGRAM LIKES HACK [April] 2016
kevindurant35 replied to DontEver_'s topic in DIY Cheats
thanks mate -
Help/Support theos error - something wrong with my code
kevindurant35 replied to kevindurant35's topic in Help & Support
Did that already ! marked as solved. Special thanks should go to @castix who provided the solution and helped me out to correct the code. -
Help/Support theos error - something wrong with my code
kevindurant35 replied to kevindurant35's topic in Help & Support
I tried to convert the flex patch I found online to create a tweak. I am glad, @castix spotted the mistake and provided me with the solution ! -
Help/Support theos error - something wrong with my code
kevindurant35 posted a topic in Help & Support
%hook UFCIAPAccessControl -(bool) isFightPassSubActive { return TRUE; } -(bool) isPPVValid:(id)fp4 { return TRUE; fp4= nil; %orig(); } -(void) accountAddPackageWithItemId:(id)fp5 receipt:(id)fp6 autorenewable:(bool)fp7 isPPV:(bool) { fp5= nil; fp6= nil; fp7= TRUE; %orig(fp5,fp6,fp7); } %end %hook UFCGeoManager -(bool) getLocationAvailable { return TRUE; } %end When trying to create a theos tweak I am getting the following error: Preprocessing Tweak.xm... Compiling Tweak.xm... Tweak.xm:31:178: error: expected class member or base class name ...self, SEL _cmd, id fp5, id fp6, bool fp7):(bool) { ^ Tweak.xm:31:178: error: expected '{' or ',' Tweak.xm:31:177: error: only constructors take base initializers ...self, SEL _cmd, id fp5, id fp6, bool fp7):(bool) { -
DIY Hack Play Pokemon GO on a Jailbroken iOS Device
kevindurant35 replied to xBlanket's topic in DIY Cheats
Thank u -
Help/Support Make package error still need help
kevindurant35 replied to Taylor Meyer's topic in Help & Support
It seems you have not installed theos properly on your idevice! -
thanks let's see
-
Hack Spotify Premium FREE (new download link)
kevindurant35 replied to AlephDegree's topic in DIY Cheats
Thanks for thus -
TuT Varieties of UIAlertView Types to Use in your Tweaks & Patchers!
kevindurant35 replied to Chrizk0's topic in Tutorials
Thank u mate for this -
Tutorial How to have a "mini" IDA Pro on your iDevice (free)
kevindurant35 replied to a topic in Tutorials
thank u mate -
Help/Support Software to find headers of apps
kevindurant35 replied to kevindurant35's topic in Help & Support
Thanks for the guide ! I will try it and let u know -
Help/Support Software to find headers of apps
kevindurant35 replied to kevindurant35's topic in Help & Support
Is there any tutorial that could help me? -
Which software are you using to find the headers of an ios app? I am currenty using flex on ios however, I prefer not to depend on a jailbroken device but rather a windows software. Thank you
-
Help/Support theos tweak - giving an error regarding WatchKit
kevindurant35 replied to kevindurant35's topic in Help & Support
Basically, I made a mistake at the beginning and used Clutch to crack the app, before using Theos jailed. The solution was to crack the app using rasticrac, which removes the Watchkit extension totally from the .ipa during the cracking process, and hence allowed me to proceed with sideloading the app onto my device. -
Help/Support theos tweak - giving an error regarding WatchKit
kevindurant35 replied to kevindurant35's topic in Help & Support
Never mind, I found the solution! -
I have created a .dylib using theos and then tried to embed it in the .ipa file, but I am getting this error when sideloading it with XCode. I am getting this error only on my iphone 6S (I have tested it only my ipad pro and it works fine). Could anyone help me with it? The error I am getting when trying to sideload it, is the following: The WatchKit app extension must have, in its Info.plist's NSExtension dictionary's NSExtensionAttributes dictionary, the key WKAppBundleIdentifier with a value equal to the associated WatchKit app's bundle identifier. Thanks a lot guys for your support in this forum.
-
Help/Support Question regarding the hooking method
kevindurant35 replied to kevindurant35's topic in Help & Support
Thank you for the mini tutorial ! Very clear instructions !!! Have a good day ) -
I am trying to use the hooking method to create a code from a flex patch I have on my device. I am trying to set id to null (please see the link below) and I am not sure how to do it. Below you can see the flex unit I am trying to edit. http://imgur.com/se1AoBi Your help would be greatly appreciated. Thanks in advance.