I'm hacking trivia crack and it works when turning on in flex2! But when I ms hook it, it's not working the hack. I have the make file and control properly made 100% but the hack isn't working. Can you please pin point where/why not working?? Mainly WHATS WRONG WITH THE -VOIDS?Here is my tweak.xm:
%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