I wanna make my own text based game using c++, also I wanna learn how to put it up on a website.
Any text based Game Tutorials? And how to put it up onto your website?
Started by Tneeds, Mar 04 2013 01:00 AM
3 replies to this topic
Ad:
#3 Crossbones+ - Reputation: 628
Posted 04 March 2013 - 02:34 AM
I'm pretty sure that C++ is not well suitable for web-site development despite a number of projects aiming to bring C++ to the web. To present your text game on the web site, you have to write it with HTML/JavaScript or ActionScript (for Flash player). However, you can convert your C++ code to JavaScript by means of Emscripten http://en.wikipedia.org/wiki/Emscripten
#4 Members - Reputation: 839
Posted 04 March 2013 - 02:45 AM
An easy way to put an application on your web site is to develop a simple java application, and create an applet, which can then be shown on your site:I wanna make my own text based game using c++, also I wanna learn how to put it up on a website.
http://netbeans.org/kb/docs/web/applets.html
You could develop the server for a web app in C++, -but don't do that for your first project.






