Results 1 to 3 of 3

Thread: Back and learned(only a bit)

  1. #1
    Cloud's Hair Spray Reputation: 10
    Learning to make mmorpgs's Avatar
    Join Date
    Mar 2007
    Location
    U.S.A
    Posts
    64
    Rep Power
    16

    Default Back and learned(only a bit)

    So,I thought about the whole process of making a MMORPG.
    I know it takes time,Development, and so on but,I thought of this awesome
    way to start(every one knows this)Lua is a easy Sever side right? Well
    guess what I know LUA so if i know all the C++ commands
    I could convert them into a easier languge to make it alot easier to make games.


    Sound werid I think so to but its just a thought.

    So if anyone can post some C++ commands like stuff that has a reaction
    like if then or something.

    :stuff:
    No flaming please.
    Also if noone post then no easier programming lang.

  2. #2
    Banned Reputation: 14
    TwitcH's Avatar
    Join Date
    May 2006
    Posts
    2,022
    Rep Power
    0

    Default

    I have no idea how you think you are going to do this but here you go:

    http://www.cppreference.com/

  3. #3
    Dante’s Inferno Reputation: 10
    naruto1327's Avatar
    Join Date
    May 2006
    Location
    OLD PROFILE. NEW: NOODLEPOWA
    Posts
    608
    Rep Power
    17

    Default

    Quote Originally Posted by Learning to make mmorpgs View Post
    So if anyone can post some C++ commands like stuff that has a reaction
    like if then or something.
    I don't quite understand you but... here you go?

    Code:
    #include <iostream>
    using namespace std;
    int main()
    {
    
    int userNumber;
    cout << "Hello there, please enter a number:\n";
    cin >> userNumber;
    cout << "zomg your IQ is " + userNumber + "?!\n";
    system("PAUSE");
    return 0;
    }
    Not sure what you wanted <_<

Posting Permissions

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