Jump to content

The Epic Gamer

Senior Member
  • Posts

    186
  • Joined

  • Last visited

3 Followers

Profile Information

  • iDevice
    iPad Pro 9.7"
  • iOS Version
    11.2.6
  • Jailbroken
    Yes
  • Android Device
    Galaxy A7
  • Rooted
    No
  • Gender
    Male
  • Interests
    Hacking

Recent Profile Visitors

3,491 profile views

The Epic Gamer's Achievements

Newbie

Newbie (1/14)

  • Reacting Well
  • Week One Done
  • One Month Later
  • One Year In
  • 2 Years In

Recent Badges

4.5k

Reputation

  1. I installed it but now I still have the same first error, even though I used the sdk you sent me
  2. Now I get this error find: ‘plutil’: Bad CPU type in executable
  3. Hello, I am experiencing problems with Theos, I have the iOS 10.2 SDK Here is the error: iPad:/var/mobile/liquidtextpdf root# make package > Making all for tweak LiquidTextPDF… make[2]: Nothing to be done for 'internal-library-compile'. > Making all in LiquidTextPDFSettings… > Making all for bundle LiquidTextPDF… ==> Copying resource directories into the bundle wrapper… ==> Linking bundle LiquidTextPDF (armv7)… ld: framework not found Preferences clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation) make[4]: *** [/var/theos/makefiles/instance/bundle.mk:37: /var/mobile/liquidtextpdf/.theos/obj/armv7/LiquidTextPDF.bundle/LiquidTextPDF] Error 1 ==> Linking bundle LiquidTextPDF (arm64)… ld: framework not found Preferences clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation) make[4]: *** [/var/theos/makefiles/instance/bundle.mk:37: /var/mobile/liquidtextpdf/.theos/obj/arm64/LiquidTextPDF.bundle/LiquidTextPDF] Error 1 make[3]: *** [/var/theos/makefiles/instance/bundle.mk:37: /var/mobile/liquidtextpdf/.theos/obj/arm64/LiquidTextPDF.bundle/LiquidTextPDF] Error 2 make[3]: *** Waiting for unfinished jobs.... make[3]: *** [/var/theos/makefiles/instance/bundle.mk:37: /var/mobile/liquidtextpdf/.theos/obj/armv7/LiquidTextPDF.bundle/LiquidTextPDF] Error 2 make[2]: *** [/var/theos/makefiles/instance/bundle.mk:26: internal-bundle-all_] Error 2 make[1]: *** [/var/theos/makefiles/master/rules.mk:123: LiquidTextPDF.all.bundle.variables] Error 2 make: *** [/var/theos/makefiles/master/aggregate.mk:12: internal-all] Error 2 Tweak.xm: @import Foundation; @import UIKit; #import <substrate.h> #import "vm_writeData.h" // To MSHook Offsets, use https://iosgods.com/topic/22718-mshook-offsets/ // To Generate Tweak.xm and Preferences Plist https://iosgods.com/topic/24138-code-inject/ #define PLIST_PATH @"/var/mobile/Library/Preferences/com.majdawwad.liquidtextpdf.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } // Add your MS/Flex/MSHook Code here. Examples can be found on iOSGods. %ctor { // Code Injection example if(GetPrefBool(@"key1")) { vm_writeData(0x123456, 0x123456); // } if(GetPrefBool(@"key2")) { vm_writeData(0x10963C, 0xC0F8AC70); // } if(GetPrefBool(@"key3")) { vm_writeData(0x1806B8, 0x381C); // ARMv7Offsets vm_writeData(0x2FA51C, 0x381C); // vm_writeData(0x1001D98E0, 0x1F2003D5); // ARM64Offsets vm_writeData(0x10038DD0C, 0x1F2003D5); // } } %hook LTuserinfo -(bool) hasProUpgrade { if(GetPrefBool(@"key1")) { return TRUE; } return %orig; } %end %hook LTuserinfo -(void) setHasProUpgrade:(bool)arg1 { if(GetPrefBool(@"key1")) { arg1 = TRUE; } %orig(arg1); } %end %hook LTuserinfo -(bool) inkStartedEnabled { if(GetPrefBool(@"key1")) { return TRUE; } return %orig; } %end %hook LTuseinfo -(bool) inkingEnabled { if(GetPrefBool(@"key1")) { return TRUE; } return %orig; } %end %hook LTuserinfo -(void) setInkingEnabled:(bool)arg1 { if(GetPrefBool(@"key1")) { arg1 = TRUE; } %orig(arg1); } %end %hook LTuserinfo -(void) setValidatedStudent:(bool)arg1 { if(GetPrefBool(@"key1")) { arg1 = TRUE; } %orig(arg1); } %end %hook LTuserinfo -(bool) multidocEnabled { if(GetPrefBool(@"key1")) { return TRUE; } return %orig; } %end %hook LTuserinfo -(bool) multiDocStartedEnabled { if(GetPrefBool(@"key1")) { return TRUE; } return %orig; } %end %hook LTuserinfo -(bool) proStartedEnabled { if(GetPrefBool(@"key1")) { return TRUE; } return %orig; } %end %hook CLSAnalyticsMetadataController +(bool) hostJailbroken { if(GetPrefBool(@"key2")) { return FALSE; } return %orig; } %end // Automatic Popup Code void setup() { UIAlertController *igcredits = [UIAlertController alertControllerWithTitle:@"Made for iOSGods.com" message:@"Liquid Text PDF Reader Patcher by Majd Awwad for iOSGods.com!\n\nVisit the hack's official topic on iOSGods for more information and updates!" preferredStyle:UIAlertControllerStyleAlert]; UIAlertAction *iosgods = [UIAlertAction actionWithTitle:@"Visit iOSGods.com!" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){ UIApplication *application = [UIApplication sharedApplication]; NSURL *URL = [NSURL URLWithString:@"https://iosgods.com/forum/13-free-jailbroken-cydia-cheats/"]; [application openURL:URL options:@{} completionHandler:^(BOOL success) { if (success) { //NSLog(@"Opened url"); } }]; }]; UIAlertAction *clubs = [UIAlertAction actionWithTitle:@"Visit the Clubs!" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){ UIApplication *application = [UIApplication sharedApplication]; NSURL *URL = [NSURL URLWithString:@"https://iosgods.com/clubs/"]; [application openURL:URL options:@{} completionHandler:^(BOOL success) { if (success) { //NSLog(@"Opened url"); } }]; }]; UIAlertAction *thankyou = [UIAlertAction actionWithTitle:@"Thank you ?" style:UIAlertActionStyleCancel handler:nil]; [igcredits addAction:iosgods]; [igcredits addAction:clubs]; [igcredits addAction:thankyou]; [[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:igcredits animated:true completion:nil]; } void unsubscribeToLaunchEvent(void); static void didFinishLaunching(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef info) { setup(); unsubscribeToLaunchEvent(); } const char *authObserver = "authObserver"; void subscribeToLaunchEvent() { CFNotificationCenterAddObserver(CFNotificationCenterGetLocalCenter(), authObserver, &didFinishLaunching, (CFStringRef)UIApplicationDidFinishLaunchingNotification, NULL, CFNotificationSuspensionBehaviorDrop); } void unsubscribeToLaunchEvent() { CFNotificationCenterRemoveObserver(CFNotificationCenterGetLocalCenter(), authObserver, (CFStringRef)UIApplicationDidFinishLaunchingNotification, NULL); } __attribute__((constructor)) static void initialize() { subscribeToLaunchEvent(); } Makefile: ARCHS = armv7 arm64 TARGET = iphone:clang:latest:latest #THEOS_PACKAGE_DIR_NAME = debs PACKAGE_BUILDNAME = iOSGods.com #DEBUG = 0 FINALPACKAGE = 1 FOR_RELEASE = 1 #GO_EASY_ON_ME = 1 include $(THEOS)/makefiles/common.mk TWEAK_NAME = LiquidTextPDF LiquidTextPDF_FILES = Tweak.xm LiquidTextPDF_FRAMEWORKS = UIKit LiquidTextPDF_LDFLAGS += -Wl,-segalign,4000 include $(THEOS_MAKE_PATH)/tweak.mk SUBPROJECTS += LiquidTextPDFSettings # To compile your project as a Tweak only, comment out or remove this line. include $(THEOS_MAKE_PATH)/aggregate.mk
  4. Hello everyone, i’m having an issue on my iPad that is running iOS 11.2.6, I installed iGameGaurdian and the icon isn’t showing, how do I fix this?
  5. ReProvision ReProvision is a new way to resign applications easily without the need for a developer account, just like ext3nder, but it’s better than ext3nder, the UI design is really neat and very simple to use Installation:
  6. Hello everyone, I want to avoid iCloud Activation Lock on my iOS 7.1.2 iPad 2, so cydia icon disappeared and I managed to open Cydia Eraser, How do I avoid iCloud Activation Lock?
  7. When I download an iPA from AppCake’s site and try to install it in AppCake it says it’s not available for iOS 11
  8. How do I make a flex 3 patch to remove ads on a certain app? (What should I search for in Flex 3)
  9. I get this error: 1 error generated. make[3]: *** [/var/theos/makefiles/instance/rules.mk:246: /var/mobile/hotspotvpn/.theos/obj/arm64/Tweak.xm.07d950b2.o] Error 1 ==> Compiling Tweak.xm (armv7)… Tweak.xm:45:1: error: control may reach end of non-void function [-Werror,-Wreturn-type] Tweak.xm: (I used the 3.0 template from iOS Gods) @import Foundation; @import UIKit; #import <substrate.h> #import "vm_writeData.h" // To MSHook Offsets, use https://iosgods.com/topic/22718-mshook-offsets/ // To Generate Tweak.xm and Preferences Plist https://iosgods.com/topic/24138-code-inject/ #define PLIST_PATH @"/var/mobile/Library/Preferences/com.majdawwad.hotspotvpn.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } // Add your MS/Flex/MSHook Code here. Examples can be found on iOSGods. %ctor { // Code Injection example if(GetPrefBool(@"key1")) { vm_writeData(0x123456, 0x123456); // } if(GetPrefBool(@"key2")) { vm_writeData(0x10963C, 0xC0F8AC70); // } if(GetPrefBool(@"key3")) { vm_writeData(0x1806B8, 0x381C); // ARMv7Offsets vm_writeData(0x2FA51C, 0x381C); // vm_writeData(0x1001D98E0, 0x1F2003D5); // ARM64Offsets vm_writeData(0x10038DD0C, 0x1F2003D5); // } } %hook AFUserAccount -(bool) isElite { if(GetPrefBool(@"key1")) { return TRUE; } return %orig; } %end %hook AFUserAccount -(void) setIsElite:(bool)arg1 { if(GetPrefBool(@"key1")) { arg1 = TRUE; } %orig(arg1); } %end %hook AFUserAccount -(void) setAuto_renew:(bool)arg1 { if(GetPrefBool(@"key1")) { arg1 = TRUE; } %orig(arg1); } %end %hook AFUserAccount -(bool) auto_renew { if(GetPrefBool(@"key1")) { return TRUE; } return %orig; } %end %hook AFUserAccount -(bool) isValid { if(GetPrefBool(@"key1")) { return TRUE; } return %orig; } %end %hook AFUserAccount -(void) setIsValid:(bool)arg1 { if(GetPrefBool(@"key1")) { arg1 = TRUE; } %orig(arg1); } %end %hook AFUserAccount -(bool) hasLifetime { if(GetPrefBool(@"key1")) { return TRUE; } return %orig; } %end %hook AFUserAccount -(void) setHasLifetime:(bool)arg1 { if(GetPrefBool(@"key1")) { arg1 =TRUE; } %orig(arg1); } %end %hook CLSAnalyticsMetadataController +(bool) hostJailbroken { if(GetPrefBool(@"key2")) { return FALSE; } return %orig; } %end // Automatic Popup Code void setup() { UIAlertController *igcredits = [UIAlertController alertControllerWithTitle:@"Made for iOSGods.com" message:@"Hotspot Sheild VPN Cheats by Majd Awwad for iOSGods.com!\n\nVisit the hack's official topic on iOSGods for more information and updates!" preferredStyle:UIAlertControllerStyleAlert]; UIAlertAction *iosgods = [UIAlertAction actionWithTitle:@"Visit iOSGods.com!" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){ [[UIApplication sharedApplication] openURL: [NSURL URLWithString: @"https://iosgods.com/forum/13-free-jailbroken-cydia-cheats/"]]; }]; UIAlertAction *clubs = [UIAlertAction actionWithTitle:@"Visit the Clubs!" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){ [[UIApplication sharedApplication] openURL: [NSURL URLWithString: @"https://iosgods.com/clubs/"]]; }]; UIAlertAction *thankyou = [UIAlertAction actionWithTitle:@"Thank you ?" style:UIAlertActionStyleCancel handler:nil]; [igcredits addAction:iosgods]; [igcredits addAction:clubs]; [igcredits addAction:thankyou]; [[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:igcredits animated:true completion:nil]; } void unsubscribeToLaunchEvent(void); static void didFinishLaunching(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef info) { setup(); unsubscribeToLaunchEvent(); } const char *authObserver = "authObserver"; void subscribeToLaunchEvent() { CFNotificationCenterAddObserver(CFNotificationCenterGetLocalCenter(), authObserver, &didFinishLaunching, (CFStringRef)UIApplicationDidFinishLaunchingNotification, NULL, CFNotificationSuspensionBehaviorDrop); } void unsubscribeToLaunchEvent() { CFNotificationCenterRemoveObserver(CFNotificationCenterGetLocalCenter(), authObserver, (CFStringRef)UIApplicationDidFinishLaunchingNotification, NULL); } __attribute__((constructor)) static void initialize() { subscribeToLaunchEvent(); }
×
  • 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