I'm not sure how to put all of this for one button
%hook UserInfo
-(int) lowAimRatio {
return -900;
}
%end
%hook UserInfo
-(void) setLowAimRatio:(int)arg1 {
arg1 = -900;
return %orig;
}
%end
%hook UserInfo
-(void) setHighAimRatio:(int)arg1 {
arg1 = 1300;
return %orig;
}
%end
%hook UserInfo
-(int) highAimRatio {
return 1300;
}
%end
%hook UserInfo
-(void) setForCue:(int)arg1 aim:(int) {
arg1 = 10;
arg2 = 10;
return %orig;
}
%end
%hook UserInfo
-(int) getCueAim:(int)arg1 {
arg1 = 10;
return %orig;
}
%end
%hook VisualCue
-(BOOL) hideGuidelinesMode {
return FALSE;
}
%end
%hook VisualGuide
-(BOOL) showSecondaryGuides {
return FALSE;
}
%end
%hook VisualGuide
-(BOOL) enabled {
return FALSE;
}
%end
Don't steal my code