Our Scripts Vault contains many game scripts that you can use to create your own game!
Let me add that when developing a game, more important than knowing how to code is knowing how to write proper, maintainable, and extensible code. You need to understand that your game is going to have lots of changes, things will almost always not work as you intended, so you need to think in advance, you need to look at every piece of code that you write as temporary, something that will change in the future.
I completely disagree. Writing proper code and finishing games is mutually exclusive. You have to choose one
Quote from: Chris on November 28, 2010, 04:38:46 AMI completely disagree. Writing proper code and finishing games is mutually exclusive. You have to choose one Not really, you're confusing proper code with perfect code. It will take forever (and I mean that literally) for you to create perfect code. However, having proper code is all about getting yourself into the habit of writing proper code. Occasional slip-ups are had by all but, by and large, you should be habitually writing proper code.
If for example you write all your code against concrete implementations instead of abstractions, you'll have a hard time every time you need to add something new to the game, or extend something already implemented.