What do I add to my tweak xm to connect it to my preference bundle my make file is connected to it but not my tweak xm here is my tweak xm:
%hook UserInfo
-(int)getAimForCue:(int)arg1{
return -1;
}
%end
%hook GameManager
-(bool)isStandard9BallOrGoldenShot{
return 0;
}
%end
%hook UserSettingsManager
-(void)setNoGuidelinesOffline:(bool)arg1{
arg1 = 0;
return %orig;
}
%end
%hook UserSettingsManager
-(bool)noGuidelinesOffline{
return 0;
}
%end
%hook FBAdBotDetector
-(bool)isJailBrokenDevice{
return 0;
}
%end
%hook TrophyRingRewardPopupView
-(void)setVIPRewardWithVIPpoints:(int)arg1{
arg1 = 869999;
return %orig;
}
%end
%hook UserInfo
-(void)setVIPPoints:(unsigned int)arg1{
arg1 = 869999;
return %orig;
}
%end
%hook MenuUserProfileMiniPopup
-(bool)showVipBadge{
return 1;
}
%end
%hook MenuUserProfileMiniPopup
-(bool)showVipButton{
return 1;
}
%end
%hook MenuVIPProgressionNode
-(bool)isTierAchieved{
return 1;
}
%end
%hook UserInfo
-(void)setVIPTier:(unsigned int)arg1{
arg1 = 5;
return %orig;
}
%end