>>I know the address (ArtMoney)
I have no clue what that means.
>>after all I'm here to learn
Great, so start by writing your own code.
// put include statements here
int main()
{
// put your code here
}
Ancient Dragon
Retired & Loving It
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
I know the variable address and I need more tutorials... as is said I'm not here for codes... I'm here for functions and what they do, and finally that they have some LITTLE spoiler for the trainer.
What trainer? What variable? What game? Tutorials on what subject? What do these functions need to do? We need far more details.
VernonDozier
Posting Expert
5,527 posts since Jan 2008
Reputation Points: 2,633
Solved Threads: 711
In MS-Windows and *nix each process (program) has its own address space, and the address in one program can not normally be changed by another program. That is one of the security features of the operating systems. Just because you printed out the address of a variable in program A doesn't mean you can use that address in program B because in program B that address might point to a completly different thing (such as code) in program B's address space, or it might not be the address of anything at all.
That address is not relative to the operating system but relative to the program.
Ancient Dragon
Retired & Loving It
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
Ancient Dragon
Retired & Loving It
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
so if you have address of int - you can try this :)
int * money = (int*)0x7ffd8000;
*money = 666;
Read threads before opening mouth and inserting foot :)
Ancient Dragon
Retired & Loving It
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343