View Poll Results: Do you want/need this tutorial to be posted?

Voters
5. This poll is closed
  • Yes

    5 100.00%
  • No

    0 0%
Results 1 to 8 of 8
  1. #1
    djzikou's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Sfax
    Posts
    12
    Reputation
    10
    Thanks
    4
    My Mood
    Devilish

    Question Quick Tutorial on the most common way and technique to hack most of the games!

    I almost browsed every section in the site and the most common request is learning the creation of a trainer or a "game hack" so i thought before completing the C++ tutorial how about making a quick Tutorial/Demonstration about the most common way to start hacking a game and the tools needed.

    i'm gonna post a poll to see how many out there want this and if its wanted soo badly, i'll make this tutorial so we can forget about this topic for good.

    so give your opinion in the poll or in the comments below.

    Cheers!

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

    gogogokitty (02-27-2014)

  3. #2
    Misery Jr.'s Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    Teamspeak
    Posts
    1,215
    Reputation
    247
    Thanks
    267
    My Mood
    Happy
    Woot only vote so far. Yea make one so us noobs know where to start

  4. #3
    djzikou's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Sfax
    Posts
    12
    Reputation
    10
    Thanks
    4
    My Mood
    Devilish
    Quote Originally Posted by Jacareverde View Post
    Woot only vote so far. Yea make one so us noobs know where to start
    Sure thats why i'm putting this to know where to start and understand whats going on but you need to learn c++ to improve your skills and create your own techniques

  5. #4
    Misery Jr.'s Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    Teamspeak
    Posts
    1,215
    Reputation
    247
    Thanks
    267
    My Mood
    Happy
    Quote Originally Posted by djzikou View Post
    Sure thats why i'm putting this to know where to start and understand whats going on but you need to learn c++ to improve your skills and create your own techniques
    Fair enough, I'll do it when I can be bothered

  6. #5
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    what kind of tutorials, basic hacking tutorials like trainers or more advanced stuff, i need to learn how to bypass a antihack
    LEEEEEEROY JEEEEENKINS

  7. #6
    djzikou's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Sfax
    Posts
    12
    Reputation
    10
    Thanks
    4
    My Mood
    Devilish
    Quote Originally Posted by gogogokitty View Post
    what kind of tutorials, basic hacking tutorials like trainers or more advanced stuff, i need to learn how to bypass a antihack
    In that tutorial we'll start by finding variables adresses in memory and use these to create a trainer and an injectable dll using injector.

    bypassing an anti hack server is a pretty easy job if you have a small idea about encryption or "camouflage" techniques which i would make a tutorial about it if there's people who wants to.

  8. #7
    gogogokitty's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1,090
    Reputation
    113
    Thanks
    3,503
    Quote Originally Posted by djzikou View Post
    In that tutorial we'll start by finding variables adresses in memory and use these to create a trainer and an injectable dll using injector.

    bypassing an anti hack server is a pretty easy job if you have a small idea about encryption or "camouflage" techniques which i would make a tutorial about it if there's people who wants to.
    i need the bypassing part lol so put down a +1 for me. i sent you a pm

    edit: idk if the pm sent it was stuck refreshing but heres what i sent, i figured it would be a nice way to explain how the if statments work as well and showing and demonstrating the while loop what what its doing. all the // writing doesnt fit -_-
    Last edited by gogogokitty; 02-27-2014 at 02:51 PM.
    LEEEEEEROY JEEEEENKINS

  9. #8
    djzikou's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Sfax
    Posts
    12
    Reputation
    10
    Thanks
    4
    My Mood
    Devilish
    Quote Originally Posted by gogogokitty View Post
    i need the bypassing part lol so put down a +1 for me. i sent you a pm

    edit: idk if the pm sent it was stuck refreshing but heres what i sent, i figured it would be a nice way to explain how the if statments work as well and showing and demonstrating the while loop what what its doing. all the // writing doesnt fit -_-
    Code:
    int main()
    {
    	int Number;
    
    	cout << "enter the number 5: ";
    
    	while (true)
    	{
    		cin >> Number;  // this is where the user enters his number, depending on which number he/she enters, it will go to the proper if statement and exicute whats inside of it
    
    		if (Number == 5){
    			cout << "you have entered number 5\n"; // where it goes \n at the end of the text, its so it goes to the next line
    			cout << " \n";       // this is to add a blank line
    			cout << "enter another number: ";
    		}
    
    		if (Number < 5){
    			cout << "the number you entered is less than 5\n";
    			cout << " \n";       // this is to add a blank line
    			cout << "enter another number: ";
    		}
    
    		if (Number > 5){
    			cout << "the number you entered is more than 5\n";
    			cout << " \n";       // this is to add a blank line
    			cout << "enter another number: ";
    		}
    
    	}
    }
    Of course thats what i am working on, a complete tutorial for beginners on C++ coding (starting from scratch) and i've already posted some lessons

  10. The Following User Says Thank You to djzikou For This Useful Post:

    gogogokitty (02-27-2014)

Similar Threads

  1. The WarZ Tactical Overview and Infinite Sprint Hack
    By Helper in forum WarZ & Infestation Survivor Stories Hacks & Cheats
    Replies: 5
    Last Post: 12-11-2012, 11:38 PM
  2. Replies: 4
    Last Post: 06-26-2011, 06:50 PM
  3. What are the most common and misleading typos.
    By radnomguywfq3 in forum General
    Replies: 22
    Last Post: 03-13-2010, 03:10 PM
  4. A way to keep a hack undetected-or the rambling of a noob-your call
    By UberlyPwned in forum WarRock - International Hacks
    Replies: 1
    Last Post: 09-17-2007, 05:48 PM
  5. What is the most easy way to make a trainer? im a n00b..
    By metallica92 in forum WarRock - International Hacks
    Replies: 27
    Last Post: 05-27-2007, 08:00 AM

Tags for this Thread