What Game engine should i use!

Started by
3 comments, last by jsvcycling 12 years, 2 months ago
I was wonder if anyone could name me a few good 2d game engines (or the game engines these games use?) that could make a game spot on to them

Mir2: http://mir2.gamepotusa.com/

or

Magic World Online: http://mwo.enjoymmo.com/


any help would be greatly appreciated.



thanks - Josh
Advertisement
Flash/Actionscript 2.0 or 3.0

Flash/Actionscript 2.0 or 3.0


does that have the ability to make a game like them and with the ability to make it online too.

thanks for your comment
See, the game engine you would want to use would first depend on what programming/scripting language you would use. There at hundreds of engines out there, but not all of them support every programming language.

If you are going to go with C# I recommend unity3d(http://unity3d.com/). I dabbled with unity a few years ago and it was ok. Its a 3d game engine but I have seen many 2d games built upon it. Unity works as an installed program, as a web game (though the user must install the unity runtime), or for iOS/Android.

If you fresh out of college (or in college) they probably taught you Java. That's good because Java is a very popular and flexible language. It is possible to write 2d and 3d games in java using the Lightweight Java Game Library (http://lwjgl.org/). It works on most platforms and is somewhat easy to use (the game engine for the popular game Minecraft is built atop lwjgl).

If you are a C/C++ dude, then there are tons of choices. The one drawback is that most C/C++ engines don't support embedding the game in a webpage. Though upside though is that they are some of the most powerful engines around.

If you are a well educated programmer who has a great knowledge of the language of your choice, the easiest way to go might be to just write your own engine. Yeah, sounds like a lot of work, but in the end it might be just what you need. I mean, you (and whoever helps you write the game) can make the engine just the way you want it. Game engines are complex projects, but after a lot of studying and testing and analysis of other engines, you'll get the hang of it (I've written 2 engines, the first one I wrote for a small unpublished flight simulator; my current engine is a FPS engine). Oh, that reminds me. If you do happen over an engine that makes you say "This is the engine I'm using" that is usually one drawback, genre. Yeah, just think of it this way, its easier to find a RTS game engine than to modify an FPS engine to create an RTS game. So just because you like the way the classes and namespaces are setup in a certain engine doesn't mean it will be the most efficient one for you (this is where creating you own engine usually gets re-added to your list of valid options).

A few other engine I recommend include:

Panda3D (C++ & Python 2.6; http://www.panda3d.org/)
LOVE2d (Lua; http://love2d.org/)
Delta3D (C++; http://www.delta3d.org/)
Some favourite quotes:Never trust a computer you can't throw out a window.
- Steve Wozniak

The best way to prepare [to be a programmer] is to write programs, and to study great programs that other people have written.
- Bill Gates

There's always one more bug.
- Lubarsky's Law of Cybernetic Entomology

Think? Why think! We have computers to do that for us.
- Jean Rostand

Treat your password like your toothbrush. Don't let anybody else use it, and get a new one every six months.
- Clifford Stoll

To err is human - and to blame it on a computer is even more so.
- Robert Orben

Computing is not about computers any more. It is about living.
- Nicholas Negroponte
Oh, also, not to get your hopes down, but to create an MMORPG game requires thousands of dollars in funding. Think of all the servers you will need to maintain the huge database of players. Why do you think most MMO games are released by larger game companies that already have a large amount of infrastructure. Even if you were to create an FPS like Call-of-duty, you would still need a large infrastructure to keep track of all the player stats.

Sorry, but MMORPGs are not designed for beginners nor are the designed for experienced indie developers. You would need a team of veterans who know exactly what they're doing to get everything working right.
Some favourite quotes:Never trust a computer you can't throw out a window.
- Steve Wozniak

The best way to prepare [to be a programmer] is to write programs, and to study great programs that other people have written.
- Bill Gates

There's always one more bug.
- Lubarsky's Law of Cybernetic Entomology

Think? Why think! We have computers to do that for us.
- Jean Rostand

Treat your password like your toothbrush. Don't let anybody else use it, and get a new one every six months.
- Clifford Stoll

To err is human - and to blame it on a computer is even more so.
- Robert Orben

Computing is not about computers any more. It is about living.
- Nicholas Negroponte

This topic is closed to new replies.

Advertisement