I'm using your Fragger alert to show you
%hook FraggerAppDelegate
-(void)applicationDidBecomeActive:(id)alert {
UIAlertView *credits = [[UIAlertView alloc] initWithTitle:@"Fragger Hacked Successfully"
message:@"Hacked by L33TPr0xY from iOSGods.com!!" delegate:selfcancelButtonTitle:@"Close" otherButtonTitles:@"iOSGods", @"Credits", nil];
[credits show];
[credits release];
%orig;
}
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
NSString *credits = [alertView buttonTitleAtIndex:buttonIndex];
if([credits isEqualToString:@"iOSGods"]) {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://iOSGods.com"]];
}
}
if([credits isEqualToString:@"Credits"]) {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"THE OTHER WEBSITE YOU WANT TO REFER"]];
}
}
%end