Jump to content

Need Some Quick Help Pwease :3


Go to solution Solved by TheChief,

11 posts in this topic

Recommended Posts

Posted

Am I doing something wrong? Did i hook it wrong?

I'm trying to hook the first arg (BOOL) in MainGameVC but it doesn't work in game after deb installation.

Obviously works when I just patch with FLEX.

I'm so confused, I've looked at tuts and tried other ways but still lost :(

 

Help is greatly APPRECIATED :)

 

UzdYqm7.png?1KdSFZ57.png?1

 

 

Posted

@castix told me that "jailbreak" thing doesn't work and it doesnt need it.

+(bool)allThemePacksUnlocked {
return TRUE;
}

you typed it wrong in the tweak.xm :3

-(void)loadOpponentShipsFromMatchData:(bool)fp8 boardView:(id)fp12 {
return %orig;
fp8 = true;
}
Posted

 

@castix told me that "jailbreak" thing doesn't work and it doesnt need it.

+(bool)allThemePacksUnlocked {
return TRUE;
}

you typed it wrong in the tweak.xm :3

-(void)loadOpponentShipsFromMatchData:(bool)fp8 boardView:(id)fp12 {
return %orig;
fp8 = true;
}

 

Still not working waaaaah  :( 

Thanks though @@Amuyea 

Posted (edited)

Still not working waaaaah  :(

Thanks though @@Amuyea 

removed the jailbreak thing?

 

Can you compile and post the error :3

Updated by Amuyea
Posted (edited)

Yeah I removed the jailbrek hooks.

I double checked the bundle indentifier and matches the plist in project folder so no problems there.

It compiles fine, installs fine.

But not doing what I want it to do in game :(


removed the jailbreak thing?

 

Can you compile and post the error :3

Updated by JustinPet26
  • Solution
Posted

Try this :

-(void)loadOpponentShipsFromMatchData:(bool)fp8 boardView:(id)fp12 {
fp8=true;
%orig(fp8, fp12);
}
Also in all the books above which are like (BOOL)xxx , no need to return orig, do this

-(BOOL)xxx {
return true;
}
//If you are returning false, then follow the below one
-(BOOL)xxx {
return false;
}
Posted

Try this :

-(void)loadOpponentShipsFromMatchData:(bool)fp8 boardView:(id)fp12 {
fp8=true;
%orig(fp8, fp12);
}
Also in all the books above which are like (BOOL)xxx , no need to return orig, do this

-(BOOL)xxx {
return true;
}
//If you are returning false, then follow the below one
-(BOOL)xxx {
return false;
}

 

That worked! Thank you! @@TheChief

And thanks @Amuyea for helping as well :)  will make sure you both get Credited for this

Posted

That worked! Thank you! @@TheChief

And thanks @Amuyea for helping as well :)  will make sure you both get Credited for this

No Problem bro :) Anytime. Also can you help me as well in my help/support topic. If you can, have a look at it. It's in the same section
Posted (edited)

No Problem bro :) Anytime. Also can you help me as well in my help/support topic. If you can, have a look at it. It's in the same section

 

I don't know anything about that yet :(  Sorry @@TheChief

Updated by JustinPet26

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