Search found 32 matches

by Dlotan
April 10th, 2012, 11:38 pm
Forum: Everything
Topic: Lesson Game Ideas [Finished]
Replies: 20
Views: 9734

Re: Lesson Game Ideas

Okay here are some ideas of simple games which i already coded and which are quiet simple Game of life (good use of 2d array) http://en.wikipedia.org/wiki/Conway%27s_Game_of_Life Minesweeper (U can use a Rekursiv algorythm to autosolve those fields which have no mine next to it)(u could do poosweepe...
by Dlotan
April 10th, 2012, 11:03 pm
Forum: Everything
Topic: space taxi for poor people
Replies: 9
Views: 6119

Re: space taxi for poor people

Okay here are some tips from me: 1. Make ur code easier to read by not doing this if(this){make this} instead type it like this if(this) { make this } 2. Use more white spaces to make ur code easier to read for example do if(x+shipsize/2 > x3-11 && x-15 < x3+11 && y+15 > y3-11 && y-15 < y3+11) or if...