Results 1 to 15 of 15
  1. #1
    taro2002's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    161
    Reputation
    10
    Thanks
    13
    My Mood
    Amazed

    Question Who can teach me hacking?

    Who can teach me some of hacking? pls priv

  2. #2
    R3DDOT's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    C://Windows/system32
    Posts
    347
    Reputation
    38
    Thanks
    2,366
    My Mood
    Cheerful
    Quote Originally Posted by taro2002 View Post
    Who can teach me some of hacking? pls priv
    The term "hacking" is sorta of a vague, but if you want to make cheats for AVA, you'll need to know how to program.

    I'm guessing you know 0 of any programming languages. TheNewBoston has a ton of videos regarding C++(C Programming), C# and a LOT more of other tutorials regarding programming. (and other subjects, like photomanipulations, etc.)

    You have an entire section dedicated to coding, so you can check it out as well.

    I don't think that someone will teach you "hacking" or whatever, that you've gotta learn by yourself. The best someone might do is help you with some difficulties you might face while coding.
    A lot of MPGH Members will willingly help you out, as long as you are polite towards them and ask nicely if they can help you.

  3. The Following User Says Thank You to R3DDOT For This Useful Post:

    taro2002 (05-28-2014)

  4. #3
    6ixth's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    3,033
    Reputation
    661
    Thanks
    19,904
    learn C/C++ or others
    learn ASM

  5. The Following 2 Users Say Thank You to 6ixth For This Useful Post:

    Nine11 (02-12-2017),taro2002 (05-28-2014)

  6. #4
    taro2002's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    161
    Reputation
    10
    Thanks
    13
    My Mood
    Amazed
    Thx but i will call you guys if i need some help ;D
    Have a nice day.
    Taro2002

  7. #5
    taro2002's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    161
    Reputation
    10
    Thanks
    13
    My Mood
    Amazed
    And 1 more question ;D How long takes me learn c++ Language?

  8. #6
    6ixth's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    3,033
    Reputation
    661
    Thanks
    19,904
    Quote Originally Posted by taro2002 View Post
    And 1 more question ;D How long takes me learn c++ Language?
    idk, depends on your IQ.

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

    Nine11 (02-12-2017)

  10. #7
    6ixth's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    3,033
    Reputation
    661
    Thanks
    19,904
    learn about structures. (if, if else, case, for, do, while..)
    functions with or without arguments and parameters
    and too Threads.

    Good Study.

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

    Nine11 (02-12-2017)

  12. #8
    taro2002's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    161
    Reputation
    10
    Thanks
    13
    My Mood
    Amazed
    Thx but i don't know how to start

  13. #9
    6ixth's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    3,033
    Reputation
    661
    Thanks
    19,904
    Quote Originally Posted by taro2002 View Post
    Thx but i don't know how to start
    Do you have Visual Studio (2010 or 2012) installed?

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

    Nine11 (02-12-2017)

  15. #10
    taro2002's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    161
    Reputation
    10
    Thanks
    13
    My Mood
    Amazed
    ;D yes but i need to search crack

  16. #11
    6ixth's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    3,033
    Reputation
    661
    Thanks
    19,904
    Quote Originally Posted by taro2002 View Post
    ;D yes but i need to search crack
    Get a false serial on Google..

    So..

    • Open your VS C / C + +;
    • Open a new project;
    • Check the (Win32 Console Application) option;
    • Add a name to your project;
    • Click Next;
    • Select the DLL and empty project options;
    • Click on Finish;
    • Now a Ctrl + shift + A and create a C + + Project File (cpp.);
    • and add the code below (main.cpp);



    Code:
    #include <Windows.h>
    #include <process.h>
    
    bool InGameLoad()
    {
    	return(
    		GetModuleHandleA("AVA.exe") &&
    		GetModuleHandleA("d3d9.dll") ? 0:1);
    }
    
    unsigned int __stdcall Hook(LPVOID)
    {
    	while(TRUE)
    	{
    		while(!InGameLoad())
    			Sleep(100);
    
    		Beep(500,1000);		
    	}
    	return 0;
    }
    
    bool __stdcall DllMain( HINSTANCE hDll, long dwReason, void* lpReserved )
    { 
    	if( dwReason ==  DLL_PROCESS_ATTACH)
        {	
    		_beginthreadex(0, 0, Hook, 0, 0, 0);	
    		 MessageBoxA(0," Text" , " Title",0);
        }
        return 1;
    }
    Last edited by 6ixth; 05-28-2014 at 10:22 AM.

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

    Nine11 (02-12-2017)

  18. #12
    taro2002's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    161
    Reputation
    10
    Thanks
    13
    My Mood
    Amazed
    Whats this? ;D

  19. #13
    6ixth's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    3,033
    Reputation
    661
    Thanks
    19,904
    Quote Originally Posted by taro2002 View Post
    Whats this? ;D
    Simple source code for you to study.

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

    Nine11 (02-12-2017)

  21. #14
    taro2002's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    161
    Reputation
    10
    Thanks
    13
    My Mood
    Amazed
    Sry i'm green and i don't know what i can do which this ;D

  22. #15
    6ixth's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    3,033
    Reputation
    661
    Thanks
    19,904
    Quote Originally Posted by taro2002 View Post
    Sry i'm green and i don't know what i can do which this ;D
    Study under this code, can help you.

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

    Nine11 (02-12-2017)

Similar Threads

  1. Who Can teach me C++ Programming?? I want make hack For Super Dancer Online
    By SyazanaAmira in forum Programming Tutorial Requests
    Replies: 5
    Last Post: 06-10-2013, 06:55 PM
  2. [Help] Who Can Teach me use Hack wall sudden attack use injector :)
    By Haffiqll in forum Sudden Attack General
    Replies: 4
    Last Post: 01-04-2013, 09:16 AM
  3. [Solved] Who can teach me to create a simple hack?
    By bloodvakep in forum CrossFire Help
    Replies: 6
    Last Post: 10-24-2011, 05:54 PM
  4. [Request] Who can teach me ninja saga hack
    By MaYhErO001 in forum Hack Requests
    Replies: 1
    Last Post: 10-07-2011, 07:09 PM
  5. Who Can Teach Me How To Hack
    By sold01 in forum C++/C Programming
    Replies: 8
    Last Post: 07-09-2011, 05:22 AM