Page 4 of 4 FirstFirst ... 234
Results 61 to 75 of 75

Thread: [GMS] GMS v109 - Eric Class

  1. Default Re: GMS v109 - Eric Class


    HAHA GUISE.
    WORDS CAN'T CHANGE MEANING.
    AM I RITE OR AM I RITE?

    Seriously Justin, the definition of trolling has changed significantly as the number of newpapayas has increased exponentially. TIMES CHANGE MAN.

  2. Default Re: GMS v109 - Eric Class


    Yes, but anyone I see using the term "troll" to refer to anything, I believe to be lacking several critical cognitive faculties. It's just annoying to hear at this point. It has been so muddled and overused... Seriously? You get pranked on April Fools and "LOLOL I GOT TROLLED!"

    No. Just no.

  3. Default Re: GMS v109 - Eric Class


    Tell me if I'm doing it wrong.

    Code:
    Using namespace std
    
    int my_character_class
    
    int main()
    {
    Cout << "What does the scouter say about his power level?";
    Cin >> Eric_class_power_level << endl;
    
    
    If Eric_class_power_level >= 9001
    {
    Cout << "What the pineapple is this pomegranate, my" << my_character_class << " will never be able to compete!";
    }
    
    Else
    {
    Cout << "I'm a dumbass."; 
    }
    }
    Tl; dr I suck at making jokes and code

  4. Default Re: GMS v109 - Eric Class


    Code:
    #include "stdafx.h"
    #include <iostream>
    
    struct Class 
    {
    	int everyClass;
    	int eric;
    };
    
    int main () 
    {
    	using namespace std;
    	Class scouter;
    	cout << "What does the scouter say about eric class' power level?: ";
    	cin >> scouter.eric;
    	
    	if (scouter.eric > 9000) {
    		cout << "It's over 9000!" << endl;
    	}
    	else {
    		cout << "Eric's weak!" << endl;
    	}
    	return 0;
    }
    Me too bro.

  5. Default Re: GMS v109 - Eric Class


    I'm worse. xP

    Ah, return 0 is the part that keeps the window from closing on its own, isn't it? I didn't know you could put the using namespace std; part inside the main function, I thought it had to be waay above.

  6. Default Re: GMS v109 - Eric Class


    "using namespace std;" can be put anywhere in the project. The place where you put it can limit its scope, however.

    "return 0" is not required for C++ because C++ will automatically return 0 for you, unlike C. Returning 0 is best used for compatibility as other programs may depend on the return 0 (EXIT_SUCCESS) or 1 (EXIT_FAILURE) to determine what to do next. You can return any integer you like to determine an end-of-program state. Returning 0 is just the preferred success mechanism.


  7. Default Re: GMS v109 - Eric Class


    Still a better patch than potential.

  8. Default Re: GMS v109 - Eric Class


    how the pineapple is that trolling and not just winning an argument

  9. Default Re: GMS v109 - Eric Class


    Did anyone actually apply the patch? If not, you should. It's safe!

  10. Default Re: GMS v109 - Eric Class


    LOL - I like the pic of rainbow gril with a chinchilla.

  11. Donator Straight Male
    IGN: ShinkuDragon HoukaPhoenix BoshokuRaven
    Server: Scania
    Level: 152
    Job: Batman
    Guild: IDissOrtis
    panama

    Default Re: GMS v109 - Eric Class


    because you made the guy that was right, unable to win.

    trolling in that example would be to make someone saying that 2+2=4, believe it may not be 4

  12. Default Re: GMS v109 - Eric Class


    ...then if i have to read it 3 times to figure out what it means, it isnt worth reading

  13. Donator Straight Male
    IGN: ShinkuDragon HoukaPhoenix BoshokuRaven
    Server: Scania
    Level: 152
    Job: Batman
    Guild: IDissOrtis
    panama

    Default Re: GMS v109 - Eric Class


    i guess, but each person trolls for his own motives, some (like me, on basil, and here a few posts back) are just bored

  14. Default Re: GMS v109 - Eric Class


    Or you can do it like me and get them angry.

  15.  

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •