Jump to content

17 posts in this topic

Recommended Posts

Posted

Are you sure that worked because I just tried it and I can't play. Try this

#include <substrate.h>

%hook PRAccountManager
-(bool) userHasUnlimitedLives {
return TRUE;
}
%end

%hook PRQuestionViewController
-(bool) characterWinTutorial {
return TRUE;
}
%end

%hook PRAnswersGroupView
-(void) setWrongAnswerSelector:(SEL)arg1 {
return %orig;
}
%end

%hook PRPowerUp
-(int) cost {
return 0;
}
%end

Add to the top of makefile 

ARCHS = armv7 arm64
Posted

 

#include <substrate.h>

%hook PRQuestionViewController
-(bool) characterWinTutorial {
return TRUE;
}
%end

%hook PRAnswersGroupView
-(void) setWrongAnswerSelector:(SEL)arg1 {
return %orig;
}
%end

%hook PRPowerUp
-(int) cost {
return 0;
}
%end

%hook PRGameViewController
-(bool) shouldShowPowerUpTips {
return TRUE;
}
%end

%hook PRGameViewController
-(bool) willShowPowerUpTip {
return TRUE;
}
%end

%hook PRQuestionViewController
-(void) showCorrectAnswer {
return %orig;
}
%end

%hook PRAccountManager
-(bool) userHasUnlimitedLives {
return TRUE;
}
%end
Add this to your make file:

ARCHS = armv7 arm64
Before you do that are unlimited lives working when you install the tweak?

I already have that. Everything is working excepts the -void. -void functions are not working

Are you sure that worked because I just tried it and I can't play. Try this

 

#include <substrate.h>

%hook PRAccountManager
-(bool) userHasUnlimitedLives {
return TRUE;
}
%end

%hook PRQuestionViewController
-(bool) characterWinTutorial {
return TRUE;
}
%end

%hook PRAnswersGroupView
-(void) setWrongAnswerSelector:(SEL)arg1 {
return %orig;
}
%end

%hook PRPowerUp
-(int) cost {
return 0;
}
%end
Add to the top of makefile 

ARCHS = armv7 arm64

I already have that. Everything is working excepts the -void. -void functions are not working. Still not working

Posted

Use this:

%hook PRQuestionViewController
-(bool) characterWinTutorial {
return FALSE;
}

-(void) cheatCorrectAnswer {
return [self performSelector:@[member=selectorr](showCorrectAnswer) withObject:nil afterDelay:0.5];;
}
%end

%hook PRAnswersGroupView
-(void) setWrongAnswerSelector:(SEL)arg1 {
return;
}
%end

%hook PRPowerUp
-(int)cost {
return 0;
}
%end

%hook PRGameViewController
-(bool) shouldShowPowerUpTips {
return TRUE;
}

-(bool) willShowPowerUpTip {
return FALSE;
}
%end

I removed the unlimited lives method, as it is only visual and does not actually work.

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