Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
Admin

Code [Tweak.xm] Call of Duty: Black Ops Zombies 1.3.5

Recommended Posts

These are not all the features, only 3. They are: ammo, grenades and points.

 

Here is the Tweak.xm:

 

 

/* Copyright NitroxicDemon */
 
/*************************************/
/**Usage: writeData(0xADDR, 0xDATA);**/
/*************************************/
#include "writeData.h"
 
%ctor {
double delayInSeconds = 5.0;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC));
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
   writeData(0x234846, 0xC046C046);        //<<<<<<<< might be ammo or nades
   writeData(0x23AE4E, 0xC046C046);        //  Either ammo or nades I forgot
   writeData(0x20F0A4, 0x47614761);  //Points
});
 
 
}
 
 
%hook s3eAppDelegate
 
-(void)applicationDidBecomeActive:(id)arg { 
 
UIAlertView *credits = [[UIAlertView alloc] initWithTitle:@"COD:BOZ Hack" 
          message:@"Hacked by NitroxicDemon for iOSMods.com!" 
                                                 delegate:self 
   cancelButtonTitle:@"Thanks!" 
   otherButtonTitles:@"Visit Us", nil]; 
[credits show];
[credits release]; 
return %orig;
}
 
%new
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
 
NSString *button = [alertView buttonTitleAtIndex:buttonIndex];
 
if([button isEqualToString:@"Visit Us"])
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.iOSMods.com/"]];                                                                                
}
}
%end
 
 

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...

×
×
  • Create New...