Results 1 to 10 of 10
  1. #1
    spartacchio's Avatar
    Join Date
    Aug 2007
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    1

    how can add farfog in my hack??

    wht kind of functions i need to use to add farfog and nearfog addyes??
    writelong?
    writepoinetrfloat???

    i hope u'll anserw..

  2. #2
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    WriteProcessMemory API call and the windows header file.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  3. #3
    castaway's Avatar
    Join Date
    Mar 2007
    Location
    In a BIG Box.
    Posts
    1,636
    Reputation
    14
    Thanks
    97
    #include <windows.h>

    WriteProcessMemory(hProcess, (*LPVOID)0xADDRESS, Value, nSize,NULL);

    nSize can be multiple things:

    1 Byte
    2 2bytes
    4 Long
    8 Float/double

  4. #4
    spartacchio's Avatar
    Join Date
    Aug 2007
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by thimo View Post
    #include <windows.h>

    WriteProcessMemory(hProcess, (*LPVOID)0xADDRESS, Value, nSize,NULL);

    nSize can be multiple things:

    1 Byte
    2 2bytes
    4 Long
    8 Float/double
    ok,i call #include <windows.h>

    than write void Farfog()
    {
    jgytrgfg();
    WriteProcessMemory(asdgae, (LPVOID*) (0xb2a848), 0, 4,NULL);

    }

    But doesn't work.
    i put the call of the function (dll function) in button and also(to try) in timer but nothing.!

    Where i'm wrong?(if write(*LPVOID) i get error)

  5. The Following User Says Thank You to spartacchio For This Useful Post:

    oilu (05-26-2008)

  6. #5
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    Code:
    #include <windows.h>
    void Farfog()   
    {
        jgytrgfg();
        int Write = 0;
        WriteProcessMemory(asdgae, (LPVOID*) (0xb2a848), &Write, 4,NULL);
    }
    I have no idea what the fuck those do, I assume jgytrgfg(); is calling some sort of function(Which?), and asdgae is your Handle, correct?

    Changes I made that should work. But may not because I have no idea what those red highlights are..




    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  7. #6
    spartacchio's Avatar
    Join Date
    Aug 2007
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by Jeremy View Post
    Code:
    #include <windows.h>
    void Farfog()   
    {
        jgytrgfg();
        int Write = 0;
        WriteProcessMemory(asdgae, (LPVOID*) (0xb2a848), &Write, 4,NULL);
    }
    I have no idea what the fuck those do, I assume jgytrgfg(); is calling some sort of function(Which?), and asdgae is your Handle, correct?

    Changes I made that should work. But may not because I have no idea what those red highlights are..

    ok,thx for help.
    peopkle tell me that i need to do farfog and nearfog with writelong functions and should work!
    the 1 red text is memory(); the second is hprocess

    Late i try to do this function!

    Thx a lot!

  8. #7
    castaway's Avatar
    Join Date
    Mar 2007
    Location
    In a BIG Box.
    Posts
    1,636
    Reputation
    14
    Thanks
    97
    Jeta/Jeremy , we should make some c++ guide

  9. #8
    spartacchio's Avatar
    Join Date
    Aug 2007
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by thimo View Post
    Jeta/Jeremy , we should make some c++ guide
    really yes.
    i like mpgh and also make hack in c++,but in this site u haven't got any guide in c++ =(

  10. #9
    Hans211's Avatar
    Join Date
    Nov 2007
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    8
    Quote Originally Posted by spartacchio View Post
    ok,i call #include <windows.h>

    than write void Farfog()
    {
    jgytrgfg();
    WriteProcessMemory(asdgae, (LPVOID*) (0xb2a848), 0, 4,NULL);

    }

    But doesn't work.
    i put the call of the function (dll function) in button and also(to try) in timer but nothing.!

    Where i'm wrong?(if write(*LPVOID) i get error)
    Why are you naming it that way, its c++ not vb6
    Just use normal names, it won't be detected, everything is translated into pointers to addresses.
    Farfog and nearfog are float values.
    if you put 0 or 0.0f in farfog you have glasswall...
    0 (long) and 0.0f (float) are the same (4 bytes all zero)
    • Don't disturb gamers, this will happen

    I make WR cheats (cheat1 - d3dcheat) , op7 d3d, so how about you ?
    Suggestions are always welcome

  11. #10
    Hans211's Avatar
    Join Date
    Nov 2007
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    8
    Quote Originally Posted by spartacchio View Post
    ok,i call #include <windows.h>
    than write void Farfog()
    {
    jgytrgfg();
    WriteProcessMemory(asdgae, (LPVOID*) (0xb2a848), 0, 4,NULL);

    }

    But doesn't work.
    i put the call of the function (dll function) in button and also(to try) in timer but nothing.!

    Where i'm wrong?(if write(*LPVOID) i get error)
    Why are you naming it that way, its c++ not vb6
    Just use normal names, it won't be detected, everything is translated into pointers to addresses.
    Farfog and nearfog are float values.
    if you put 0 or 0.0f in farfog you have glasswall...
    0 (long) and 0.0f (float) are the same (4 bytes all zero)
    • Don't disturb gamers, this will happen

    I make WR cheats (cheat1 - d3dcheat) , op7 d3d, so how about you ?
    Suggestions are always welcome

Similar Threads

  1. how can i change my vb6's hack skin
    By sukh13 in forum Visual Basic Programming
    Replies: 8
    Last Post: 11-07-2007, 03:29 PM
  2. How can i add hotkeys in Visual c++
    By nbr1dan in forum C++/C Programming
    Replies: 7
    Last Post: 11-03-2007, 03:32 PM
  3. how can i make a password on my hack
    By 123456789987654321 in forum WarRock - International Hacks
    Replies: 4
    Last Post: 06-24-2007, 04:50 PM
  4. How can i make a hack for WarRock?
    By tomva in forum General Game Hacking
    Replies: 4
    Last Post: 06-09-2007, 03:13 PM
  5. how can i make game hack?!!!!
    By UnknownID in forum General Game Hacking
    Replies: 2
    Last Post: 02-07-2006, 07:21 PM

Tags for this Thread