Page 1 of 2

Good Game Engines

Posted: Fri Oct 22, 2010 7:36 pm
by Ninico
Hello I want to know if there a any Game Engines that require no scripting or coding. Thanks! :)

Re: Good Game Engines

Posted: Fri Oct 22, 2010 8:27 pm
by epicasian
I'm not trying to be a douche here, but if you want to use game maker or some other software like that, the probably isn't the community for you.

Re: Good Game Engines

Posted: Fri Oct 22, 2010 9:46 pm
by PaperDuckyFTW
If your looking for something to start you off making games, I'd suggest Game Maker or Blitz Plus. You can 'obtain' a book called 'game programming for teens' which teaches you how to use blitz plus. (prety sure thats the name of the book).

Re: Good Game Engines

Posted: Fri Oct 22, 2010 11:38 pm
by ibly31
If you are specifically looking for something that requires no coding... I can tell you thats not really something that exists or is good enough to make the games that you have in your mind. Its so much less hassle just learning to program than it is fiddling with the stupid programs to get the game to act the way you want. Plus, if you ever want to become a game maker for a job, you pretty much will have to learn to program - so why not get a head start?

Re: Good Game Engines

Posted: Sat Oct 23, 2010 1:51 am
by adikid89
You looking for a WYSIWYG MMORPG game engine? :lol:

Re: Good Game Engines

Posted: Sat Oct 23, 2010 4:44 am
by GroundUpEngine
epicasian wrote:I'm not trying to be a douche here, but if you want to use game maker or some other software like that, the probably isn't the community for you.
lol... agreed

Re: Good Game Engines

Posted: Sat Oct 23, 2010 5:48 am
by ismetteren
There is game maker, but you probably won't be doing any really great games in it. The only good game maker game i know of is Spelunky(and i guess the scripting feature of gm was used for that game). I'm not saying you will be doing great games with any programming languages for the first long time, but at least you will be learning something.

Re: Good Game Engines

Posted: Sat Oct 23, 2010 7:56 am
by Ninico
So is there any places where I can learn to use the language? Or are there any languages out there?

Re: Good Game Engines

Posted: Sat Oct 23, 2010 8:56 am
by dbomb101
Well like the other guys said this isn't the ideal community to be asking these type of questions, but I do have a couple of recommendations none the less. The first is that you look into modding which is pretty much using a current engine and creating levels for it for example there is the source engine which comes along free with Half Life 2
(not brilliant to use) and then there is the unreal engine which is I hear is a pretty damned good modding tool. Although I haven't touched this one much I hear Unity 3D is a pretty good tool as well.

I would also suggest you go watch the latest getting into games development videos to get the low down on all your programming options.

Re: Good Game Engines

Posted: Sat Oct 23, 2010 9:32 am
by epicasian
Here's Falco's getting started in game development series: http://www.youtube.com/view_play_list?p ... 7C7523EFFD

Re: Good Game Engines

Posted: Sat Oct 23, 2010 1:26 pm
by Falco Girgis
Ninico wrote:So is there any places where I can learn to use the language? Or are there any languages out there?
/RAGE

Re: Good Game Engines

Posted: Sat Oct 23, 2010 1:42 pm
by Khearts
GyroVorbis wrote:
Ninico wrote:So is there any places where I can learn to use the language? Or are there any languages out there?
/RAGE
whathesaid.

Re: Good Game Engines

Posted: Sat Oct 23, 2010 1:58 pm
by MadPumpkin
If you want to make games without programming and use gamemaker, then I suggest you leave because your kind isn't really welcome here.
If you want to make mods or levels for games, that don't require programming, this isn't necessarily your forum but IMO you're welcome here. If so I would recommend using Oblivions CS IV, Half-Life 2 Hammer to learn how, and then maybe move onto more advanced ones, or use the more powerful tools of those 2.

However, if you want to get started programming look into these, IN ORDER is highly recommended: (Cplusplus.com)
Don't be fooled by the extensive list, it's not as hard as it seems at first:
Hello World C++
Variables C++
Constants C++
Operators C++
Basic I/O C++
Control C++
Functions C++
Or you could always make my life easier than me posting the rest of them, and scroll to the bottom of each page and hit next.

Look into these once you can at LEAST recognize the above things:
Text Based Game C++
SDL graphics lib, seriously don't do this until you have learned all the above

Re: Good Game Engines

Posted: Sat Oct 23, 2010 3:52 pm
by JGorard159
Ninico wrote:Hello I want to know if there a any Game Engines that require no scripting or coding. Thanks! :)
I think we may be drifting from the point slightly here... There really is NO WAY you can create a game yourself without using some form of programming or another. Some Game Engines tend to disguise the fact that you're writing code by making it seem easy and intuitive, through some sort of GUI or similar system, but the truth with these systems is that it would be so much easier just to write the code yourself than use their fiddly, poorly designed system. Seriously, go and learn the basics of programming, I'd recommend learn Basic, Lua or Python first, as they are all ridiculously simple to learn, and they will teach you all the basic concepts of programming. Don't learn C or C++ first; as before you delve into such programming giants as C/++, you really do want to have a solid foundation of code knowledge to build upon.

Re: Good Game Engines

Posted: Sat Oct 23, 2010 3:57 pm
by JGorard159
Also, if you want to start creating quick and easy games straight away without spending hours learning programming and not really accomplishing anything through it, another route you could go down is downloading and using a precompiled engine (which will still require some scripting to get gameplay working, but it is much simpler than coding everything yourself).

I would highly recommend StoneTrip's ShiVa PLE Engine if you want to take this route. It's easy to use and set up, and the main programming language is Lua, which is incredibly easy to learn and you'll be able to make simple games very quickly. This will also teach you some of the basics of programming, and game creation, place you'll feel like you're accomplishing something :) . Maybe then transition up to Unity or another similar Game Engine (Unity is much more powerful, the main scripting languages are Javascript and C#, which are similar to C++. This means they are harder to grasp, but they will teach you some important things about the structure and syntax of languages like C++).

Hope I helped!