Tweak.xm is right here for some reason i get error on MSHookFunction and MSFindSymbol i looked at every tut here and other ios forums i need help for right now am just going to add one code #import <CoreFoundation/CoreFoundation.h> #import <substrate.h> #import <Foundation/Foundation.h> int (*old__ZN6Player4hurtEP6Entityi)(); int $__ZN6Player4hurtEP6Entityi() { { return 999999; } MSHookFunction(((int*)MSFindSymbol(NULL, "__ZN6Player4hurtEP6Entityi")),(int*)$__ZN6Player4hurtEP6Entityi,(int**)&old__ZN6Player4hurtEP6Entityi); } %hook minecraftpeAppDelegate - (void)applicationDidBecomeActive:(id)fp8 { %orig(); UIAlertView *alert = [[uIAlertView alloc]initWithTitle:@"Hack Activated" message:@"Hack by Dex from iOSGods!!!" delegate:nil cancelButtonTitle:@"Enjoy" otherButtonTitles:nil]; [alert show]; [alert release]; } %end