Page 1 of 3 123 LastLast
Results 1 to 15 of 33
  1. #1
    ronnie12345's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    1

    how do i know were to add a hack in a source

    ok i am new to hacking all i want to know is were to know were to put the acual code and i do code but im still in the process of learning if somone could tell me were to know were to put the code atm im using gellins base i already have the addies for it all i need to know is were to add my tele kill source code

    THX :P

  2. The Following User Says Thank You to ronnie12345 For This Useful Post:

    danyer96 (06-16-2010)

  3. #2
    TawksinJr's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    The basement
    Posts
    71
    Reputation
    10
    Thanks
    4
    Download Visual C++

    Create a new project

    .Dll file

    Write down your code -Cough- Copy and paste your code -cough-

    Press build solution and find the .dll...

  4. The Following User Says Thank You to TawksinJr For This Useful Post:

    ronnie12345 (06-16-2010)

  5. #3
    R45H1D's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Montreal
    Posts
    785
    Reputation
    21
    Thanks
    951
    My Mood
    Amazed
    Lol your basicly asking us to give you a complete source code to C&P.

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

    ronnie12345 (06-16-2010)

  7. #4
    Void's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Inline.
    Posts
    3,198
    Reputation
    205
    Thanks
    1,445
    My Mood
    Mellow
    Quote Originally Posted by -RagerZ View Post
    Lol your basicly asking us to give you a complete source code to C&P.
    Doesn't everyone?

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

    ronnie12345 (06-16-2010)

  9. #5
    ronnie12345's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    1
    no i have a source code thx guys this realy help !!!!!!!!!! ecpecialy you tawksin

  10. #6
    ronnie12345's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    1
    sorry for double post but any one know were to find a .dll templet for c++

  11. #7
    Spookerzz's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    4,647
    Reputation
    26
    Thanks
    572
    Just use the default ones
    I'm back.

  12. #8
    ronnie12345's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by ToxinJr View Post
    Just use the default ones
    then just save as .dll?

  13. #9
    ronnie12345's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    1
    sorry for double post again but can some one give me step by step detail on how to do it using gellins base and how to turn it in to a .dll file and then how update it any time after?

  14. #10
    R45H1D's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Montreal
    Posts
    785
    Reputation
    21
    Thanks
    951
    My Mood
    Amazed
    Quote Originally Posted by Void View Post
    Doesn't everyone?
    I think so xD Do ?

  15. #11
    mwb1234's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    460
    Reputation
    7
    Thanks
    65
    Quote Originally Posted by Void View Post
    Doesn't everyone?
    Pretty much 0_0

  16. The Following User Says Thank You to mwb1234 For This Useful Post:

    ronnie12345 (06-16-2010)

  17. #12
    ronnie12345's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    1
    first off im not asking for a source all im asking is how to save it as a .dll and how to add another hack like opk to it

  18. #13
    mwb1234's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    460
    Reputation
    7
    Thanks
    65
    Stop begging for some1 to leech from. LEARN C++ STUPID CHOOBLET

  19. #14
    R45H1D's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Montreal
    Posts
    785
    Reputation
    21
    Thanks
    951
    My Mood
    Amazed
    Quote Originally Posted by ronnie12345 View Post
    first off im not asking for a source all im asking is how to save it as a .dll and how to add another hack like opk to it
    LMAO IL GIVE U A OPK AND TELEKILL SOURCE BUT YOU GOTTA UPDATE ADDYS URSELF OK?

    Code:
    DWORD posptr;
    DWORD posy;
    #define posyoffset 0xCC
    #define charposoffset 0x66F34
    DWORD playertarget;
    #define otherplyrptr 0x37770868
    #define yoffset 0x178
     DWORD WINAPI opk(LPVOID)
    {
    	while(true)
    	{
    		memcpy(&posy,(void *)(posptr),4);
    		posy += posyoffset;
    		memcpy(&playertarget,(void *)(otherplyrptr),4);
    		playertarget += yoffset;
    		if(posy > posyoffset && playertarget > yoffset)
    		{
     if( GetAsyncKeyState( 0x58 ) < 0 ) //OPK key x
    			{
    				*(float*)playertarget = *(float*)posy;
    				*(float*)(playertarget+0x4) = *(float*)(posy+0x4);
    				*(float*)(playertarget-0x4) = *(float*)(posy-0x4);
    			}
    			if( GetAsyncKeyState( 0x43 ) < 0 ) { //Telekill key C
    				*(float*)posy = *(float*)playertarget;
    				*(float*)(posy+0x4) = *(float*)(playertarget+0x4);
    				*(float*)(posy-0x4) = *(float*)
     }
    }
    }
    }
     there
     down in dwMainThread
     put
     under the sleep
     put
     posptr = (DWORD)GetModuleHandleA("ClientFX.fxd");
    	posptr += charposoffset;
    	CreateThread(NULL, NULL, opk, NULL, NULL, NULL);
     there

  20. #15
    ronnie12345's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    1
    no thats not what i mean i was giving an example like were would i add something l ike that in my base and how would i add it and also i need help saving it as a .dll and then using it as a hack

Page 1 of 3 123 LastLast

Similar Threads

  1. How do i know if i got a hw ban?
    By niekill in forum WarRock - International Hacks
    Replies: 9
    Last Post: 01-12-2008, 10:37 AM
  2. How to add Winchester hack to my hack ?? (VB6)
    By floris12345! in forum Visual Basic Programming
    Replies: 7
    Last Post: 01-04-2008, 06:19 AM
  3. How do i know if im hardware banned..?
    By mc pure cash in forum WarRock - International Hacks
    Replies: 2
    Last Post: 05-06-2007, 03:50 AM
  4. How do you know if
    By ahmetneo in forum WarRock - International Hacks
    Replies: 8
    Last Post: 12-31-2006, 11:54 AM
  5. dose any1 know were 2 get tv episodes
    By sqeak in forum Suggestions, Requests & General Help
    Replies: 8
    Last Post: 02-19-2006, 06:10 AM