Jump to content

6 posts in this topic

Recommended Posts

Posted

I am trying to compile a theos patcher and I recieve errors while compiling it. I am on ios 9.0.2 iPad Mini 4.

Here is regular "make package"

i75w1qa.png

 

Here is "make package messages=yes"

1a5Ohp0.png

 

Here is my Makefile

ARCHS = armv7 arm64
TARGET = iphone:clang:latest:latest
#CFLAGS = -fobjc-arc
#THEOS_PACKAGE_DIR_NAME = debs

include theos/makefiles/common.mk

TWEAK_NAME = TerrariaMod
TerrariaMod_FILES = Tweak.xm
TerrariaMod_FRAMEWORKS = UIKit
TerrariaMod_LDFLAGS += -Wl,-segalign,4000

include $(THEOS_MAKE_PATH)/tweak.mk

after-install::
	install.exec "killall -9 SpringBoard"
SUBPROJECTS += TerrariaMod autolipo
include $(THEOS_MAKE_PATH)/aggregate.mk

 

I tried ldid -S "binary" for the usual commands needed for theos and I recieve an error for ldid also.

AvGhRWO.png

Posted (edited)
1 hour ago, Fadexz said:

I'm not 100% sure but it looks like you are missing some frameworks in your include folder IDK.

You can try and get a more updated SDK https://github.com/theos/sdks

I am using the ios 8.1 sdk.  I found this download for it from @Ted2 on another thread somewhere.

http://www94.zippyshare.com/v/tfVYO2ju/file.html

Updated by Jbro129
Posted
7 hours ago, Ted2 said:

When you go to /var/theos/sdks/'yoursdk'/usr/lib

 

do you have a libojc here? I have two.

 

Also, I remember this error. I THINK i fixed it by adding the iOS 10 sdks to the sdks folder to it (without removing ios 8 one)

 

get it here: https://github.com/theos/sdks?files=1

You fixed it but the game loads up then crashes shortly after even when no patches are applied.

https://drive.google.com/file/d/1t5sy3fqpHSgcNjgmGNxR7Uhi44hWMDlK/view?usp=sharing

#import "writeData.h"
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <substrate.h>

#define PLIST_PATH @"/var/mobile/Library/Preferences/com.jbro129.terrariamod.plist"

inline bool GetPrefBool(NSString *key) {
		return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue];
}

%ctor {
	if(GetPrefBool(@"dev")) {
		writeData(0x0, 0x0);
	} else {
		writeData(0x0, 0x0);
}


	if(GetPrefBool(@"craft")) {
		writeData(0x, 0x0);
		writeData(0x, 0x0);
		writeData(0x, 0x0);
	} else {
		writeData(0x, 0x0);
		writeData(0x, 0x0);
		writeData(0x, 0x0);
}


	if(GetPrefBool(@"health")) {
		writeData(0x, 0x);
		writeData(0x, 0x);
	} else {
		writeData(0x, 0x);
		writeData(0x, 0x);
}


	if(GetPrefBool(@"block")) {
		writeData(0x, 0x);
	} else {
		writeData(0x, 0x);
}

}




%hook AppDelegate


- (BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 {
UIAlertView *igcredits = [[UIAlertView alloc] initWithTitle:@"Terraria Mod Menu" 
                                                  message:@"Mod By Jbro129"
                                                 delegate:self 
										cancelButtonTitle:@"Continue" 
										otherButtonTitles:@"Subscribe", nil]; 
[igcredits show];
[igcredits release]; 
return %orig();
}
 
%new
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
 
NSString *button = [alertView buttonTitleAtIndex:buttonIndex];
 
	if([button isEqualToString:@"Subscribe"])
	{
		[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://youtube.com/Jbro129"]];                                                                                
	}
}
%end

 

I removed the offsets because I just dont like sharing offsets.

That google drive link is a video I recorded display recorder.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • 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