Results 1 to 8 of 8
  1. #1
    thekm1994's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    79
    Reputation
    8
    Thanks
    1
    My Mood
    Daring

    Exclamation Hey Guys ! its me (your stupid guy :D ) well , a way to be hacker ... ?

    Guys !
    I dont know what way to go in C++ to become an Hacker !
    pls helpp me ! tell me your steps that you become an hacker or a other better way to become an hacker !

    Oh and i got a new questions !
    ine Hexademical code !

    why are you guys puting 0 and not 1 ? or 2 ? i mean the first zero ! (0x)

    and what does the (x) mean ?
    hmm and after the (x) is that THE adress ? if it is ! whay arent you writing just it and you write (0x) ????/me/yea
    If you wanna see how to make a someone dumb press here

  2. #2
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    Quote Originally Posted by thekm1994 View Post
    Guys !
    I dont know what way to go in C++ to become an Hacker !
    pls helpp me ! tell me your steps that you become an hacker or a other better way to become an hacker !

    Oh and i got a new questions !
    ine Hexademical code !

    why are you guys puting 0 and not 1 ? or 2 ? i mean the first zero ! (0x)

    and what does the (x) mean ?
    hmm and after the (x) is that THE adress ? if it is ! whay arent you writing just it and you write (0x) ????/me/yea
    the 0x is to tell the compiler you're going to write HEXADECIMAL behind it.
    0x10 means hexadecimal 10, which is 16 in decimal, you could also write 10h, which is the same as 0x10, so also 16.

    behind 0x you put bytes, an addy is 4 bytes, so you do e.g. 0xAABBCCDD

    but, if you look at that with olly it will say 0xDD 0xCC 0xBB 0xAA
    so you could probably do this too:
    Code:
    char addy[4] = {0xDD, 0xCC, 0xBB, 0xAA};
    *(DWORD*)addy = 100;
    which would be the same as *(DWORD*)0xAABBCCDD = 100; I guess(not entirely sure)



    As for your first question: Learn all of the basics, write small project like snake in a console app for example, and the most important part of the basics are POINTERS, make sure you know how to use them in and out! They are the most basic thing you must know for gamehacking, and now i am too lazy(and it's too hot) to write more here ^^
    Ah we-a blaze the fyah, make it bun dem!

  3. The Following 2 Users Say Thank You to Hell_Demon For This Useful Post:

    'Bruno (06-28-2010),waht? (06-28-2010)

  4. #3
    thekm1994's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    79
    Reputation
    8
    Thanks
    1
    My Mood
    Daring
    what is the *(DWORD*) mean ?, i know that (*) can make a pointers varibles , but when you put it that way i m confiused !
    If you wanna see how to make a someone dumb press here

  5. #4
    'Bruno's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Portugal
    Posts
    2,883
    Reputation
    290
    Thanks
    1,036
    My Mood
    Busy
    Quote Originally Posted by Hell_Demon View Post
    As for your first question: Learn all of the basics, write small project like snake in a console app for example, and the most important part of the basics are POINTERS, make sure you know how to use them in and out! They are the most basic thing you must know for gamehacking, and now i am too lazy(and it's too hot) to write more here ^^
    /

    Ontopic:

    I already said on your other post (i guess), that you could start by hacking something simple as solitaire (only if you are well with the basics, such as pointers... etc...), Well i started with solitaire, anyway im not an hacker... so...
    Light travels faster than sound. That's why most people seem bright until you hear them speak.

  6. The Following User Says Thank You to 'Bruno For This Useful Post:

    thekm1994 (06-28-2010)

  7. #5
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    Quote Originally Posted by thekm1994 View Post
    what is the *(DWORD*) mean ?, i know that (*) can make a pointers varibles , but when you put it that way i m confiused !
    which * do you mean? the first one or the second?

    Code:
    DWORD *mypointer = (DWORD*)0x0B4DF00D; //mypointer is type DWORD*, so we cast 0x0B4DF00D to DWORD* too
    *mypointer = 100; //*mypointer means the value of mypointer, mypointer is 0x0B4DF00D, so value of 0xB4DF00D is changed to 100.
    *(DWORD*)0x0B4DF00D.
    (what is in here) means that you tell compiler 'it is this type', in this case it is DWORD* which means pointer to DWORD value. the * infront of (DWORD means go to the 'value' of it, so go to what 0x0B4DF00D points to.

    I hope this helped
    Ah we-a blaze the fyah, make it bun dem!

  8. The Following User Says Thank You to Hell_Demon For This Useful Post:

    thekm1994 (06-28-2010)

  9. #6
    thekm1994's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    79
    Reputation
    8
    Thanks
    1
    My Mood
    Daring
    hmmmmmmm
    can you write it like
    1) (first pointer mean)
    2) (seacond pointer mean)

    Thx
    If you wanna see how to make a someone dumb press here

  10. #7
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    *(DWORD*)0x0B4DF00D = 100;

    Dereference, so go to 'value'
    Tell compiler type is DWORD*, so pointer to DWORD
    The addy, ¯\(o.O)/¯
    The new value
    Ah we-a blaze the fyah, make it bun dem!

  11. #8
    thekm1994's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    79
    Reputation
    8
    Thanks
    1
    My Mood
    Daring
    hehe ok thanks
    If you wanna see how to make a someone dumb press here

Similar Threads

  1. Hey guys its xpwned12
    By Foyerhead in forum CrossFire Farming & Partner Request
    Replies: 0
    Last Post: 07-28-2011, 06:25 PM
  2. hey guys need your help.
    By tooktheriver2 in forum Combat Arms Help
    Replies: 1
    Last Post: 11-12-2009, 05:57 PM
  3. Hey guys, I need your help.
    By SkullMetalLord in forum CrossFire Hacks & Cheats
    Replies: 2
    Last Post: 06-18-2009, 03:46 PM
  4. [Done] hey guys i suk at making sigs ^^
    By metabee22 in forum Help & Requests
    Replies: 11
    Last Post: 06-10-2006, 01:16 PM
  5. Hey guys
    By ktspaz in forum WarRock - International Hacks
    Replies: 4
    Last Post: 01-15-2006, 06:41 AM