![]() |
|
MMORPG - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Design (https://sinister.ly/Forum-Design) +--- Forum: Web Design (https://sinister.ly/Forum-Web-Design) +--- Thread: MMORPG (/Thread-MMORPG--56126) |
MMORPG - MRIDGAF - 06-14-2014 What would I need to learn in order to create a text graphic browser game like this one... prisonstruggle.com MMORPG - MRIDGAF - 06-14-2014 What would I need to learn in order to create a text graphic browser game like this one... prisonstruggle.com RE: MMORPG - dropzon3 - 06-14-2014 A server-side language: PHP being quite common for learning and is fairly widespread. You could use anything though Node.js, Python, Ruby on Rails(probably not the best choice for a game like this), Java, C# etc. HTML/CSS/Javascript for frontend design. You'd also want to learn about relational databases(MySQL being a common first choice but pgsql, and other options exist) games like this will be fairly intensive with the database so understand how to effectively setup the database and the relations is important. I was a developer for a browser-based MMORPG so if you have any particular questions I can probably help. RE: MMORPG - dropzon3 - 06-14-2014 A server-side language: PHP being quite common for learning and is fairly widespread. You could use anything though Node.js, Python, Ruby on Rails(probably not the best choice for a game like this), Java, C# etc. HTML/CSS/Javascript for frontend design. You'd also want to learn about relational databases(MySQL being a common first choice but pgsql, and other options exist) games like this will be fairly intensive with the database so understand how to effectively setup the database and the relations is important. I was a developer for a browser-based MMORPG so if you have any particular questions I can probably help. |