Page 2 of 2
Re: game ideas and commitment
Posted: Fri Jan 09, 2015 3:26 pm
by kikito
zorg wrote:sadly i don't know many people who would be interested...
For those of you in that same situation, here's a tweeter robot who will periodically shout at you:
https://twitter.com/indiewhipbot
EDIT:
I figured I should also say something a bit more on-topic. I am loving the opinions on this thread, particularly
Ivan's. I too have benefitted from "not biting more than I could chew" and from setting things up so that "if things fail, they fail quickly" (instead of dragging for months).
The
Lostcast guys said on their latest episode that they would be doing an episode on "motivation" sometime in the future.
Re: game ideas and commitment
Posted: Sat Jan 10, 2015 12:32 pm
by Germanunkol
zorg wrote:
That would certainly raise my productivity, though sadly i don't know many people who would be interested... on the other hand i haven't exactly asked anyone about it yet either; procrastination :v
That's one of the reasons I once asked on this forum wether I could join another project, rather than coming up with yet another one of my own ideas which i yet again won't finish. That's how I ended up helping out with Micha's "Bandana" - and we're still working on it. It's so much more motivating to do this together.
Re: game ideas and commitment
Posted: Sun Jan 11, 2015 4:01 pm
by rmcode
When I started using LÖVE I made the mistake of trying to create my own games directly. I did have a bit of a clue because I've been modding for a few years, but still this was something totally different. It didn't take long until I had super messy code, no idea what to do next and how to implement certain features and motivation faded quickly.
A friend of mine suggested to start with simple clones. This builds on Ivan's answer although I don't think you should _just_ write prototypes. Writing a prototype and finishing a game are two different challenges.
The good thing about clones is that someone already has made a complete game, so when you start coding you will have a clear vision of what you need to implement, but also (and maybe more importantly) you will know when you are "done". So you actually have a goal to work towards and not just a vague "idea". The important thing is to finish the game. A pong demo is probably set up in 5 minutes in löve, but this isn't a game. Add graphics, sounds, credits, a menu, pause state, good controls. Test your game and fix bugs. Finish it!
Here is a good list of games to start with:
http://gamedev.stackexchange.com/questi ... th/945#945
This article as also pretty helpful:
http://www.gamedev.net/page/resources/_ ... pment-r892
A few more tips from my own experience:
- It seldomly makes sense to spend time working on a "can-handle-it-all"-library when you could just hack in a specific solution, which only works for your game - especially if you are starting.
- Don't think about optimisation until you really really really need it (read as: probably never). If your solution works and your framerate is steady you don't have to change a thing. People who tell you to write foo * 0.5 instead of foo / 2 because it is "faster" might be right, but unless you really have a problem with the performance of your game this is just wasted time. IMO it is better to create 5 games with shitty code than to work on one perfectly coded game that will be released in 10 years.
- Don't rewrite your code. This is closely linked to the point above. If you are working on a project there will be a point at which you will think "oh I learned so much - I could do this much better now" - This is great of course, but this will (hopefully) be true for every project you work on. Rewriting the same game 1000 times won't do you any favors. Creating 1000 half-finished games won't help you either. Finish your game with what you have and apply the newly learned stuff to your new project
- Don't start a new project. Yeah this one sounds a bit stupid but it really helps me to stay focused. I force myself to finish one game before I start working on the next one, even if the current one sucks and I'm sick of it.
P.S.: I'm far from being a professional, but these are the tips that helped me out when I was just starting!
Re: game ideas and commitment
Posted: Sun Jan 11, 2015 4:50 pm
by Doctory
thanks rmcode for your extensinve opinion
it is very useful
Re: game ideas and commitment
Posted: Mon Jan 12, 2015 1:44 am
by Jeeper
This was said in regard to working out, but I believe it applies to most other things as well:
Discipline is reliable, motivation is fleeting. The question is not how to keep yourself motivated, it's how to train yourself to work without it.
Re: game ideas and commitment
Posted: Mon Jan 12, 2015 9:34 am
by T-Bone
zorg wrote:T-Bone wrote:1. We were a team of two people. That made it possible for us to yell at each other to work more.
That would certainly raise my productivity, though sadly i don't know many people who would be interested... on the other hand i haven't exactly asked anyone about it yet either; procrastination :v
Going to a technical university helps with this
Also, remember that the people you work with don't necessarily have to have the same background as you. It could be that you code, and other people work on graphics or music, or that you split the code based on your different knowledge and experiences or whatever. From design, story, gameplay, graphics and music there's so much that can be part of games that there's bound to be somebody around you with experience or interest in something.
Re: game ideas and commitment
Posted: Mon Jan 12, 2015 2:23 pm
by zorg
T-Bone wrote:zorg wrote:T-Bone wrote:1. We were a team of two people. That made it possible for us to yell at each other to work more.
That would certainly raise my productivity, though sadly i don't know many people who would be interested... on the other hand i haven't exactly asked anyone about it yet either; procrastination :v
Going to a technical university helps with this
Also, remember that the people you work with don't necessarily have to have the same background as you. It could be that you code, and other people work on graphics or music, or that you split the code based on your different knowledge and experiences or whatever. From design, story, gameplay, graphics and music there's so much that can be part of games that there's bound to be somebody around you with experience or interest in something.
Well, i've already completed the university part, so hopefully i can finish my ideas eventually.
Re: game ideas and commitment
Posted: Fri Jan 16, 2015 4:18 pm
by davisdude
Extra Credits recently released a good video about making your first game. It's a good watch, I recommend it.
Re: game ideas and commitment
Posted: Fri Jan 16, 2015 6:40 pm
by Doctory
thats a very useful video davisdude!
i myself watched a lot of game development videos from EC before i started making games
Re: game ideas and commitment
Posted: Wed Jan 21, 2015 9:00 pm
by davisdude
They made another video about starting out:
Somebody let me know if I should not post every new video they make.