Page 1 of 3 123 LastLast
Results 1 to 15 of 40
  1. #1
    darukam's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    a house
    Posts
    61
    Reputation
    10
    Thanks
    1
    My Mood
    Cheerful

    To all of the great coders...

    I want to learn to make hacks. Bold statement? ya I'm serious. But I have some questions...
    1. what language do you guys use to make the hacks?
    2. what software?
    3. where did you learn to code?
    4. how long did it take you once you started coding to make your first hack?
    5. how long does it take to make a small hack such as a crosshair?

  2. #2
    whitten's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Posts
    1,459
    Reputation
    21
    Thanks
    491
    Languages: C++/C#, Visual Basics, etc.
    How Long: You can be a decent coder in 6-8 months.
    Where: C++ Language Tutorial and lots of google.
    How Long For A CrossHair Program:...today lol.

    I recommend that you make a hello world program before you do anything.
    What It Is:Hello world program - Wikipedia, the free encyclopedia
    How To Learn It:How to make a 'Hello World' program in C++ - Video | Wonder How To

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

    corpse4hire (08-21-2009),darukam (08-21-2009),Rocco (08-21-2009)

  4. #3
    bug_NOT_ME's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    264
    Reputation
    10
    Thanks
    98
    My Mood
    Mellow
    Quote Originally Posted by darukam View Post
    I want to learn to make hacks. Bold statement? ya I'm serious. But I have some questions...
    1. what language do you guys use to make the hacks?
    2. what software?
    3. where did you learn to code?
    4. how long did it take you once you started coding to make your first hack?
    5. how long does it take to make a small hack such as a crosshair?
    Here are my answers:

    1. Autoit (yes, that language) & C++ (as well as PHP, Visual basic, .net)

    2. Autoit has built in software that comes with it. For C++ i use DEV-C++ & Microsoft Visual Studio 2008 (with DirectX SDK March 2009)

    3. Autoit was no hassle (it's easy) . Took me several mins to make a program really. C++ was a bit harder took a while with no help..

    4. I have know autoit for 4 years now, C++ 1 year. I just started being a member of MPGH 3 months ago. Planning to make a hack now.

    5. Crosshair hack would take me less then say 10 minutes. For new people 20 mins.

    Hope that helps!
    Last edited by bug_NOT_ME; 08-21-2009 at 05:13 PM.


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

    darukam (08-21-2009)

  6. #4
    darukam's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    a house
    Posts
    61
    Reputation
    10
    Thanks
    1
    My Mood
    Cheerful
    srry took me a while to respond ! thank you!!

  7. #5
    darukam's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    a house
    Posts
    61
    Reputation
    10
    Thanks
    1
    My Mood
    Cheerful
    Quote Originally Posted by bug_NOT_ME View Post
    Here are my answers:

    1. Autoit (yes, that language) & C++ (as well as PHP, Visual basic, .net)

    2. Autoit has built in software that comes with it. For C++ i use DEV-C++ & Microsoft Visual Studio 2008 (with DirectX SDK March 2009)

    3. Autoit was no hassle (it's easy) . Took me several mins to make a program really. C++ was a bit harder took a while with no help..

    4. I have know autoit for 4 years now, C++ 1 year. I just started being a member of MPGH 3 months ago. Planning to make a hack now.

    5. Crosshair hack would take me less then say 10 minutes. For new people 20 mins.

    Hope that helps!
    LOL OK i just got autoit and made my first hello world!!! yesss the first steppp

  8. #6
    bug_NOT_ME's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    264
    Reputation
    10
    Thanks
    98
    My Mood
    Mellow
    I will post my crosshair example soon...


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

    darukam (08-21-2009)

  10. #7
    Banned4life's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    New York
    Posts
    1,249
    Reputation
    12
    Thanks
    111
    My Mood
    Buzzed
    Quote Originally Posted by bug_NOT_ME View Post
    I will post my crosshair example soon...
    no need i post my take a tape and stick it in the middle.
    Ontopic: try to learn C++, it will take a long time
    Last edited by Banned4life; 08-21-2009 at 05:31 PM.

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

    darukam (08-21-2009)

  12. #8
    Corndog's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Salem, NH
    Posts
    10,138
    Reputation
    526
    Thanks
    2,909
    to put it in perspective. this took me two weeks to learn how to do.
    Code:
    #include <iostream>
    #include <string>
    using namespace std;
    
    int main(){
    
    	char selection;
    	string noun, place, sword, verb, noun2, verb2, adj, adj2, num, adj3, adverb, adj4, adj5, num2, motime, adj6, adj7, adj8, noun3, num3, num4;
    
    	cout << "Hello. Welcome to Connor's MadLib Game. Would you like to play? (y/n):";
    	cin >> selection;
    
    	if (selection != 'y'){
    		system("exit");
    	}
    	else {
    	cout << "Enter a Place: ";
    	cin >> place;
    	cout << "Enter a Noun: ";
    	cin >> noun;
    	cout << "Enter a Silly Word: ";
    	cin >> sword;
    	cout << "Enter a Verb: ";
    	cin >> verb;
    	cout << "Enter another Noun: ";
    	cin >> noun2;
    	cout << "Enter another Verb: ";
    	cin >> verb2;
    	cout << "Enter an Adjective: ";
    	cin >> adj;
    	cout << "Enter another Adjective: ";
    	cin >> adj2;
    	cout << "Enter a Number: ";
    	cin >> num;
    	cout << "Enter another Adjective: ";
    	cin >> adj3;
    	cout << "Enter an Adverb: ";
    	cin >> adverb;
    	cout << "Enter another Adjective: ";
    	cin >> adj4;
    	cout << "Enter another Adjective: ";
    	cin >> adj5;
    	cout << "Enter another Number: ";
    	cin >> num2;
    	cout << "Enter a Measurement of Time: ";
    	cin >> motime;
    	cout << "Enter another Adjective: ";
    	cin >> adj6;
    	cout << "Enter another Adjective: ";
    	cin >> adj7;
    	cout << "Enter another Adjective: ";
    	cin >> adj8;
    	cout << "Enter another Noun: ";
    	cin >> noun3;
    	cout << "Enter another Number: ";
    	cin >> num3;
    	cout << "Enter another Number: ";
    	cin >> num4;
    
    	cout << "Is your " << noun << " making a mess of your " << place << endl << "? Try " << sword << "! It will " << verb << " your whole " << noun2 << " and " << verb2 << " to unbelievable levels! Watch, as we demonstrate, the " << adj << " capabilities of this " << adj2 << " product! Everyone should have at least " << num << " of these!" << endl; 
    	cout << "To order, call the number on your screen. " << adj3 << " phone attendants will " << adverb << " take your request. " << adj4 << " and " << adj5 << " service will be yours! Call within the next " << num2 << " " << motime << ", and you will receive a " << adj6 << ", " << adj7 << ", "<< adj8 << " " << noun3 << " as a bonus, absolutely free for an additional value of " << num3 << " dollars, plus shipping and handling cost of " << num4 << " dollars. Act Now!!" << endl; 
    	}
    	system ("pause");
    	return 0;
    }
    that is just a super simple Console Application (CMD Prompt) Mad LIb Game.


    learning how to make hacks will take a lot of effort.

  13. The Following User Says Thank You to Corndog For This Useful Post:

    darukam (08-21-2009)

  14. #9
    darukam's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    a house
    Posts
    61
    Reputation
    10
    Thanks
    1
    My Mood
    Cheerful
    Quote Originally Posted by bug_NOT_ME View Post
    I will post my crosshair example soon...
    thanks! so then ill know how long the code for a cross hair would be...

  15. #10
    bug_NOT_ME's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    264
    Reputation
    10
    Thanks
    98
    My Mood
    Mellow
    Quote Originally Posted by Corndog5595 View Post
    to put it in perspective. this took me two weeks to learn how to do.
    Code:
    #include <iostream>
    #include <string>
    using namespace std;
    
    int main(){
    
        char selection;
        string noun, place, sword, verb, noun2, verb2, adj, adj2, num, adj3, adverb, adj4, adj5, num2, motime, adj6, adj7, adj8, noun3, num3, num4;
    
        cout << "Hello. Welcome to Connor's MadLib Game. Would you like to play? (y/n):";
        cin >> selection;
    
        if (selection != 'y'){
            system("exit");
        }
        else {
        cout << "Enter a Place: ";
        cin >> place;
        cout << "Enter a Noun: ";
        cin >> noun;
        cout << "Enter a Silly Word: ";
        cin >> sword;
        cout << "Enter a Verb: ";
        cin >> verb;
        cout << "Enter another Noun: ";
        cin >> noun2;
        cout << "Enter another Verb: ";
        cin >> verb2;
        cout << "Enter an Adjective: ";
        cin >> adj;
        cout << "Enter another Adjective: ";
        cin >> adj2;
        cout << "Enter a Number: ";
        cin >> num;
        cout << "Enter another Adjective: ";
        cin >> adj3;
        cout << "Enter an Adverb: ";
        cin >> adverb;
        cout << "Enter another Adjective: ";
        cin >> adj4;
        cout << "Enter another Adjective: ";
        cin >> adj5;
        cout << "Enter another Number: ";
        cin >> num2;
        cout << "Enter a Measurement of Time: ";
        cin >> motime;
        cout << "Enter another Adjective: ";
        cin >> adj6;
        cout << "Enter another Adjective: ";
        cin >> adj7;
        cout << "Enter another Adjective: ";
        cin >> adj8;
        cout << "Enter another Noun: ";
        cin >> noun3;
        cout << "Enter another Number: ";
        cin >> num3;
        cout << "Enter another Number: ";
        cin >> num4;
    
        cout << "Is your " << noun << " making a mess of your " << place << endl << "? Try " << sword << "! It will " << verb << " your whole " << noun2 << " and " << verb2 << " to unbelievable levels! Watch, as we demonstrate, the " << adj << " capabilities of this " << adj2 << " product! Everyone should have at least " << num << " of these!" << endl; 
        cout << "To order, call the number on your screen. " << adj3 << " phone attendants will " << adverb << " take your request. " << adj4 << " and " << adj5 << " service will be yours! Call within the next " << num2 << " " << motime << ", and you will receive a " << adj6 << ", " << adj7 << ", "<< adj8 << " " << noun3 << " as a bonus, absolutely free for an additional value of " << num3 << " dollars, plus shipping and handling cost of " << num4 << " dollars. Act Now!!" << endl; 
        }
        system ("pause");
        return 0;
    }
    that is just a super simple Console Application (CMD Prompt) Mad LIb Game.


    learning how to make hacks will take a lot of effort.
    I noticed everyone is saying "Use C++ or die". That is not true. Autoit can do all of that in LESS lines and is VERY EASY to understand. Heck i am making a crosshair example right now...

    LoL that program would take me 3 secs to do...
    EDIT: I can explain everything there if anyone needs it
    Last edited by bug_NOT_ME; 08-21-2009 at 05:39 PM.


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

    darukam (08-21-2009)

  17. #11
    HaX00R's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Laval in Quebec, La belle province
    Posts
    454
    Reputation
    9
    Thanks
    103
    My Mood
    Cool
    a easy hack is so hard to make whit programin must start whit learning all programs laguage how to make a hack.... @ the end it geve u a littel bit + in the midel of the screen bat when u knw how to make it still hard bat easyer ten when ur a choob lik me


    U CAN'T SKIP, U CAN'T HIDDEN, U CANT PROTECT, U CAN ONLY DIE WHIT MaGNuM

  18. The Following User Says Thank You to HaX00R For This Useful Post:

    darukam (08-21-2009)

  19. #12
    darukam's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    a house
    Posts
    61
    Reputation
    10
    Thanks
    1
    My Mood
    Cheerful
    Quote Originally Posted by bug_NOT_ME View Post
    I noticed everyone is saying "Use C++ or die". That is not true. Autoit can do all of that in LESS lines and is VERY EASY to understand. Heck i am making a crosshair example right now...

    LoL that program would take me 3 secs to do...
    EDIT: I can explain everything there if anyone needs it
    so i shouldnt learn c++ because autoit is much easier?

  20. #13
    DarkAznKid81's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    texas
    Posts
    36
    Reputation
    10
    Thanks
    7
    My Mood
    Sad
    lol im trying to learn too
    [IMG]https://i412.photobucke*****m/albums/pp202/avatar87/Primul%20album/funny-dog-pictures-still-moving.jpg[/IMG]
    [IMG]https://i71.photobucke*****m/albums/i147/cellspics/Moving%20Pictures/th4lffkok.gif[/IMG]





    THX ME IF I HELP =)

  21. The Following User Says Thank You to DarkAznKid81 For This Useful Post:

    darukam (08-21-2009)

  22. #14
    Corndog's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Salem, NH
    Posts
    10,138
    Reputation
    526
    Thanks
    2,909
    Quote Originally Posted by bug_NOT_ME View Post
    I noticed everyone is saying "Use C++ or die". That is not true. Autoit can do all of that in LESS lines and is VERY EASY to understand. Heck i am making a crosshair example right now...

    LoL that program would take me 3 secs to do...
    EDIT: I can explain everything there if anyone needs it
    I understand that its a very simple program...but thats what i am saying. something simple like that takes a few days to weeks to learn how to do if you have never even looked at code before.

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

    darukam (08-21-2009)

  24. #15
    darukam's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    a house
    Posts
    61
    Reputation
    10
    Thanks
    1
    My Mood
    Cheerful
    Quote Originally Posted by Corndog5595 View Post
    I understand that its a very simple program...but thats what i am saying. something simple like that takes a few days to weeks to learn how to do if you have never even looked at code before.
    well is it worth it to learn c++ or should i just use AutoIt?!

Page 1 of 3 123 LastLast

Similar Threads

  1. Hey Guys The HAcks All Over The Forums !
    By jonathan.pd in forum Combat Arms Hacks & Cheats
    Replies: 4
    Last Post: 04-27-2009, 10:59 AM
  2. Playing Combat Arms All Around The World
    By apezwijn in forum Combat Arms Hacks & Cheats
    Replies: 12
    Last Post: 09-03-2008, 09:36 AM
  3. Replies: 72
    Last Post: 07-09-2008, 04:31 AM
  4. The GREAT Kitler hack from hell!!
    By NeedHacksBad in forum WarRock - International Hacks
    Replies: 13
    Last Post: 08-25-2007, 03:49 PM
  5. [Release] Re-post some of the great hacks with bypasses no leech
    By turbo159 in forum WarRock - International Hacks
    Replies: 10
    Last Post: 06-06-2007, 02:20 AM

Tags for this Thread