Jump to content

Error code when compiling with Hackmanager.h


Go to solution Solved by castix,

13 posts in this topic

Recommended Posts

Posted

case NUMBER:
                        {
                        UIAlertView *alert = [[UIAlertView alloc]initWithTitle:hack.hackName message:[NSString stringWithFormat:@"Current set %@ value = %f",hack.hackName, [[hack getvalue]floatValue]] delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Set Hack",nil];
                        [alert setAlertViewStyle:UIAlertViewStylePlainTextInput];
                        [[alert textFieldAtIndex:0] setKeyboardType:UIKeyboardTypeNumberPad];
                        [alert show];
                        [alert release];
                        }
                        break;

                        case BOOLEAN:
                        {
                        UIAlertView *alert = [[UIAlertView alloc]initWithTitle:hack.hackName message:[NSString stringWithFormat:@"Current set %@ value = %s", hack.hackName, [[hack getvalue]boolValue] ? "Yes" : "No"] delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Yes",@"No",nil];
                        [alert show];
                        [alert release];
                        }
                        break;

                        case TEXT:
                        {
                        UIAlertView *alert = [[UIAlertView alloc]initWithTitle:hack.hackName message:[NSString stringWithFormat:@"Current set %@ value = %@",hack.hackName, [hack getvalue]] delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Set Hack",nil];
                        [alert setAlertViewStyle:UIAlertViewStylePlainTextInput];
                        [alert show];
                        [alert release];
                        }
                        break;

                        default:
                        break;

There is not such a thing that support memory address. If your not doing MS hacks you need to overwrite the whole IGM source

Posted

There is not such a thing that support memory address. If your not doing MS hacks you need to overwrite the whole IGM source

 

I was thinking of something like this, though I am unsure if it will work:

%ctor
{
if([[hackmanager getHackValueAtIndex:AHACK]boolValue])
{
writeData(0x1234567, 0x00000000);
}
else
{
}
}

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines