Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 of 46
  1. #31
    Jimmy's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Jersey
    Posts
    4,572
    Reputation
    70
    Thanks
    647
    im still learning but its way to hard

  2. #32
    InsaneHack's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    27
    Reputation
    9
    Thanks
    2
    My Mood
    Cynical
    Quote Originally Posted by Richo View Post
    Lol I know like some of the fundamentals ;D
    #include <iostream>
    using namespace std;
    int main()
    {
    cout << "I did your mom";
    cin.get()
    return 0;
    }
    now run trhat in your compiler ;D
    Quote Originally Posted by juanrineytor View Post
    I did it and I get this

    I did your mom.

    WTF.

    lolz , Read the code. XD

  3. #33
    Xdarksoulx's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    pretty cool im learning stuff already and when u got a good intructror its FReaKING EASy use the youtube link its awesome and make a list of the commands that are on there in the vidoes so it gets easier

  4. #34
    AlboHacker's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    in front of pc
    Posts
    27
    Reputation
    10
    Thanks
    10
    My Mood
    Doh
    wow that looks hard. i will just start with vb.net first. wat hacks can u create with vb.net
    [img]https://************.com/sig/020/intellz.jpg[/img]

    [IMG]https://i651.photobucke*****m/albums/uu232/CoolAlbo/AlbanianWarrior-ok.gif[/IMG]

    made by photoshop if u need me to do something like that message me


    PLEASE THANK ME IF THIS HELPED!!!


    Goals:
    complete 10 posts[]
    complete 50 posts[]
    complete 100posts[]
    Make my very own hack[X]
    Share hack with only 10 ppl[X]
    Get my hack patched because of noobs[X]
    Pwn noobs with hacks[X]
    Pwn noobs without hacks[X]
    Become a mod[]
    Create free injectors all the time[X]
    Get my account flagged[X]
    Mess with other ppls computer by hacking them[X]lol
    Get kicked out of rooms without hacks[X]
    Dont get kicked out of rooms with hacks [X] weird

  5. #35
    demon321321's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    4
    lol that seems pretty hard i think im gonna stick to vb.net also :P im just starting to learn though so i got a while to go
    = Achieved
    = Not done


    [] Get 10 posts
    [] Get 25 posts
    [] Get 50 posts
    [] Get 100 posts
    [] Get 500 posts

    [] Get Thanked 5 times
    [] Get Thanked 10 times
    [] Get Thanked 25 times
    [] Get Thanked 50 times
    [] Get Thanked 100 times
    Dont Forget To Thank Me

  6. #36
    arrjack's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    42
    Reputation
    10
    Thanks
    1
    My Mood
    Sad
    its not that hard at all! use the antiRTFM videos on youtube!! hes awesome

    Code:
    #include "stdafx.h"
    
    
    #include <iostream>
    
    
    using namespace std;
    
    
    int main ()
    {
    
    const unsigned short int thenumber = 15;
    unsigned int playerguess;
    cout << "Lets play guess my number! \n" ;
    cout << "The number is between 0-30";
    cin >> playerguess; cin.get();
    
    if
    	(thenumber == playerguess)
    	cout << "correct! you win!";
    else
    if
    	(thenumber < playerguess)
    	cout << "The number was 15, your guess was too high you lose the game.";
    else
    if
    	(thenumber > playerguess) 
    		cout << " the number was 15, your guess was too low you lose the game.";
    
    	cin.get();
    	return 0;
    }

    run that in your compiler.. its a very very VERY basic guess my number game lol...

  7. #37
    kiddieboy12's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    in ur mom
    Posts
    95
    Reputation
    10
    Thanks
    1
    C++ is very hard, well.. ya..

    vb is much easier.

    basiclly you have to include the first 2 lines

    #include <iostream>
    using namespace std;

    no matter what.

    int main() tells it what to do... it also is divided in { and } (it tells it where to end)

    cout << "You Sucked My Cock"; is (the pop up, or what you are going to see)

    cin.get() waits for a key.. (press anything on keyboard
    return 0; ends..

    } this tells it to stop. basically a divider..

    this is a rip, of hello world.

    also you can do this function, in many ways, this is the fundamental of C++

    thanks me please..

  8. #38
    randomnamekabe's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    In The Thread
    Posts
    3,682
    Reputation
    25
    Thanks
    624
    Quote Originally Posted by kiddieboy12 View Post
    C++ is very hard, well.. ya..

    vb is much easier.

    basiclly you have to include the first 2 lines

    #include <iostream>
    using namespace std;

    no matter what.

    int main() tells it what to do... it also is divided in { and } (it tells it where to end)

    cout << "You Sucked My Cock"; is (the pop up, or what you are going to see)

    cin.get() waits for a key.. (press anything on keyboard
    return 0; ends..

    } this tells it to stop. basically a divider..

    this is a rip, of hello world.

    also you can do this function, in many ways, this is the fundamental of C++

    thanks me please..
    Asking for thanks makes you sound like a dumbfuck.
    Also everyone knows this.

  9. #39
    Flyhigh666's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    1
    My Mood
    Happy

    crazy

    this helps out alot i wanted to thank you in a post personally for al lthe help thanks

  10. #40
    Flyhigh666's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    1
    My Mood
    Happy
    Quote:
    Originally Posted by Richo
    Lol I know like some of the fundamentals ;D
    #include <iostream>
    using namespace std;
    int main()
    {
    cout << "You Sucked My Cock";
    cin.get()
    return 0;
    }
    now run trhat in your compiler ;D

    ((((I did it and I get this

    I did your mom.

    WTF. )))



    lololol thts b/c its not a program its a test program to let ya know its working
    Last edited by Flyhigh666; 12-05-2009 at 05:00 PM.

  11. #41
    ADMINISTER's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Lou Brutis's Basement !@!
    Posts
    68
    Reputation
    14
    Thanks
    7
    My Mood
    Sneaky
    Declaring your mom as a variable is awesome...
    She{ is my new dim statement }.lm ao

  12. #42
    Matt's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    The GFX section
    Posts
    3,966
    Reputation
    31
    Thanks
    423
    My Mood
    Relaxed
    Brain.... cracking under pressure....
    Quote Originally Posted by ViciousArt
    And I've been doing photoshop work for a very long time, and I've never heard of BLANE.

  13. #43
    ZeklerCA's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    2
    My Mood
    Blah
    Quote Originally Posted by hejsan1 View Post
    Maybe after 3month u can make a simple reload hack or so

    C++ is hard!
    VB is easy =)
    What can be made wit VB?
    [img]https://************.com/sig/019/__hey__.jpg[/img]


    RESPECT LIST:
    *ScathDeSolas
    *Dave
    *Liz
    *WarPathSin
    *Obama

  14. #44
    coreyp0wner's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    59
    Reputation
    10
    Thanks
    12
    My Mood
    Daring
    advertizing=bann





    my first montage (low quality)

    [YOUTUBE]FOEsoys9QIk[/YOUTUBE]




    to do list = not done = done = almost done

    get 50+ kills in a match
    get an unbaleiveable legit
    get fantastic
    get 100k worth of nx total
    buy 3 perm weapons
    have someone gift me something
    get 50 000 veiw's on my montage=

  15. #45
    NuB_GhOsT's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Australia
    Posts
    1,083
    Reputation
    18
    Thanks
    60
    My Mood
    Devilish
    HAHA Juan got tricked.

Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. I JUST WANNA LEARN THIS DANCE!!!
    By fecher in forum General
    Replies: 13
    Last Post: 09-23-2011, 04:35 PM
  2. Look this xD
    By jansmid1 in forum WarRock - International Hacks
    Replies: 2
    Last Post: 02-21-2009, 08:44 AM
  3. Look this time =O
    By jadedfrog in forum Showroom
    Replies: 5
    Last Post: 12-03-2008, 04:00 PM
  4. i wanna learn to make....
    By bobowham in forum WarRock - International Hacks
    Replies: 4
    Last Post: 06-11-2007, 07:11 AM
  5. I wanna learn
    By Hispiforce in forum WarRock - International Hacks
    Replies: 3
    Last Post: 06-07-2007, 04:17 PM

Tags for this Thread