- Joined
- Dec 4, 2007
- Messages
- 14
- Reaction score
- 0
NEW QUESTION! HOW DO I EXPORT MY Application
I just made my first console war text based game. This is the first version and is done. So how do I make it into a file that I can host at rapidshare and have people download? Or how can I host it on a free website where people can just go there to play it?
I'm sure its pretty hard but I just spent 5 hours coding this game from scratch and I am drop dead tired. I ended up cutting out about half the game just so I can get it done. I now 100% know IF STATEMENTS... yaya for me =(. Thanks for anyone willing to give me the low-down/ a tut to host my game so other can play it.
I'm not 100% sure what all I have to include in the file to make it easier for a person to run (I.E. click on icon and game starts)
Well I have wanted to learn how to make an mmorpg for a long time. I played the game "Runescape" for awhile and I think it would be amazing to have my own mmorpg like it. I know it will probably never happen but I would still like to learn the basics of coding and maybe down the road attempt a rpg. Anyways, I am starting the beginner tutorials and just finished my first one. It was fun, interesting, and laid out in a very easy to understand manner. The tutorial taught us to make a "Hello World" program which is basically just the command box popping up and saying a sentence you programmed it to.
Some of the things I changed in the code;
1) You can now press any key and the program will terminate (not just the enter key)
2) I changed the text and entered several line breaks
3) I added a block note!
My Code
#include <iostream>
using namespace std; int main()
/*Here are some directions and descriptions its called a block note*/
{cout << "Ohh brave new world!\nWith Such People In It\n\n\n\nYou Idiot ";system("PAUSE");}
So like I said there is my very basic code and I just had to share my accomplishments. I also have a few questions;
1) What does the code #include <iostream> do? Is it just a basic opening code that is necessary for your program to execute?
2) What does the code using namespace std; do? Is it just a basic opening code that is necessary for your program to execute?
Thanks for all the help!
I'm sure its pretty technical to do and has a lot of parts I just spent like 5 hours coding this game and I am drop dead tired so if anyone helps me I will be suprised/ incredibly greatful
I just made my first console war text based game. This is the first version and is done. So how do I make it into a file that I can host at rapidshare and have people download? Or how can I host it on a free website where people can just go there to play it?
I'm sure its pretty hard but I just spent 5 hours coding this game from scratch and I am drop dead tired. I ended up cutting out about half the game just so I can get it done. I now 100% know IF STATEMENTS... yaya for me =(. Thanks for anyone willing to give me the low-down/ a tut to host my game so other can play it.
I'm not 100% sure what all I have to include in the file to make it easier for a person to run (I.E. click on icon and game starts)
Well I have wanted to learn how to make an mmorpg for a long time. I played the game "Runescape" for awhile and I think it would be amazing to have my own mmorpg like it. I know it will probably never happen but I would still like to learn the basics of coding and maybe down the road attempt a rpg. Anyways, I am starting the beginner tutorials and just finished my first one. It was fun, interesting, and laid out in a very easy to understand manner. The tutorial taught us to make a "Hello World" program which is basically just the command box popping up and saying a sentence you programmed it to.
Some of the things I changed in the code;
1) You can now press any key and the program will terminate (not just the enter key)
2) I changed the text and entered several line breaks
3) I added a block note!
My Code
#include <iostream>
using namespace std; int main()
/*Here are some directions and descriptions its called a block note*/
{cout << "Ohh brave new world!\nWith Such People In It\n\n\n\nYou Idiot ";system("PAUSE");}
So like I said there is my very basic code and I just had to share my accomplishments. I also have a few questions;
1) What does the code #include <iostream> do? Is it just a basic opening code that is necessary for your program to execute?
2) What does the code using namespace std; do? Is it just a basic opening code that is necessary for your program to execute?
Thanks for all the help!
I'm sure its pretty technical to do and has a lot of parts I just spent like 5 hours coding this game and I am drop dead tired so if anyone helps me I will be suprised/ incredibly greatful
Last edited: