Jump to content

KonpresoR

Member
  • Posts

    27
  • Joined

  • Last visited

Profile Information

  • iDevice
    iPhone 13 Pro Max
  • Gender
    Not Telling
  • Location
    Africa

Recent Profile Visitors

673 profile views

KonpresoR's Achievements

Newbie

Newbie (1/14)

  • Popular
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

113

Reputation

  1. Thanks, I added (NULL) and it compiled successful, like this %hook UserController -(BOOL) tabletView:(id)arg1 shouldHighligthRowAtIndexPath:(id)arg2 { return false; arg1 = (NULL); arg2 = (NULL); %orig(arg1,arg2); } %end One problem I'm having right now is that the tweak is not taking effect. I'm trying to tweak settings. So I used "com.apple.preferences" as the bundle. What was I missing? [/code] Thanks, any suggestions? The tweak is functionless
  2. Good afternoon guys, can someone figured out what the problem is? It keeps giving me error here is the unit: -(BOOL) tabletView:(id) shouldHighlightRowAtIndexPath:(id) %hook UserController -(BOOL) tabletView:(id) shouldHighligthRowAtIndexPath:(id) arg1 arg2 { return false; (id)arg1 = ; (id)arg2 = ; %orig(arg1,arg2); } %end If I remove the arg, the patch will compile successful but the tweak will not take effect.
  3. DiDA, how can I add slider to this %hook User - (void)setCoins:(long) arg1 { if(GetPrefBool(@"ksetCoin")) { arg1 = 900; } %orig (arg1); } %end
  4. It worked perfectly. Thanks impossible and all of you for your support!
  5. Good evening guys, I keep getting this error while trying to compile a hack with preference bundle. Tweak.xm:20: error: %end does not make sense inside a block make[2]: *** [obj/Tweak.xm.0d97521c.o] Error 255 make[1]: *** [internal-library-all_] Error 2 make: *** [LikeHubUltimate.all.tweak.variables] Error 2 Is there anything wrong in this? #define PLIST_PATH @"/var/mobile/Library/Preferences/prefbundle.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %hook LikeHubUser - (void)setCoins:(long) arg1 { if(GetPrefBool(@"ksetCoin")) { arg1 = 900; %orig (arg1); } - (long)coins { if(GetPrefBool(@"kCoin")) { return 900; } return %orig; } %end %hook MATUtils + (BOOL)checkJailBreak { if(GetPrefBool (@"kcheckJailBreak")) { return false; } return %orig; } %end %hook SPJailbreakStatusProvider + (BOOL)isJailbroken { if(GetPrefBool(@"kisJailbroken")) { return false; } return %orig; } %end
  6. Edited, the one posted the installation is with PC. And also I saw a post requesting how to turn app into .ipa so I decided to create this tut
  7. Hello viewers, today I'm going to show a tutorial on how How to Create IPA of any app using MobileTerminal and also easy way to install it. Your device must be jailbkroken. . MobileTerminal . Clutch . Filza Procedure . Launch cydia and Install a tweak called "Clutch" (Fill the required info if you haven't done so) [Hidden Content] The .ipa file is normally stored in /var/root/documents/Cracked To install the cracked .ipa; . Launch filza or any other file manager that can install .ipa . Navigate to /var/root/documents/Cracked . Then Install . After the installation, Launch mobileTerminal, You don't need to login as root then type "uicache" it's not necessary though, but it prevents the app from crashing for the first time. Enjoy! Hope this has helped.
  8. I edited the Uicolor of an app
  9. Yeah! Yeah!! I downgraded cctool and LD64 and It worked, thanks man. This forum is far better than google
  10. See the error iPad:/var/mobile/xxx root# make Making all for tweak UnlimitedInstaPoints... Linking tweak UnlimitedInstaPoints... clang++: error: unable to execute command: Bus error: 10 clang++: error: linker command failed due to signal (use -v to see invocation) make[2]: *** [obj/UnlimitedInstaPoints.dylib.64873355.unsigned] Error 254 make[1]: *** [internal-library-all_] Error 2 make: *** [unlimitedInstaPoints.all.tweak.variables] Error 2
  11. Yes, check out my makefile, is it correct?
  12. I'm still getting the same error. But below is my makefile, is there anything wrong with it? ARCHS = armv7 arm64 TARGET = iphone:clang:latest:latest include theos/makefiles/common.mk TWEAK_NAME = UnlimitedInstaPoints UnlimitedInstaPoints_FILES = Tweak.xm UnlimitedInstaPoints_FRAMEWORKS = UIKit UnlimitedInstaPoints_LDFLAGS += -Wl,-segalign,4000 include $(THEOS_MAKE_PATH)/tweak.mk after-install:: install.exec "killall -9 SpringBoard"
×
  • 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