The Daily Click ::. Forums ::. Non-Klik Coding Help ::. I need a program idea for school
 

Post Reply  Post Oekaki 
 

Posted By Message

vortex2



Registered
  27/05/2002
Points
  1406
13th May, 2004 at 08:59:28 -

Here is a bit of advice. Pick something, start. Make SOMETHING first, then worry about what you WANT to do. This way if you never get what you want to do done, you havent done nothing for your project .

OH and I recommend making a puzzle game.... Puzzle games dont have to have fancy scrolling, they dont need alot of collision code or complex game mechanics .

If you are looking at text based stuff, I would recommend making hmmmm tic tac toe? cant go wrong with it . you could have a grid like this:
____ ____ ____
| | | |
| x | o | x |
|____|____|____|
| | | |
| | o | x |
|____|____|____|
| | | |
| | o | |
|____|____|____|


 
A bit of insanity with every bite!

Johan Hargne (Wartagon)

Lover Of Circys

Registered
  15/06/2003
Points
  1289

Game of the Week WinnerCROBASOFTVIP MemberPS3 OwnerWii OwnerMushroom
13th May, 2004 at 09:12:24 -

haha Nice vortex That doesn't look like a tic-tac-toe-grid to me, but I know what you ment though

 
Music Composer.
http://johan.hargne.se

Crobasoft
www.crobasoft.com

Galaxy613



Registered
  29/01/2003
Points
  1765
13th May, 2004 at 11:15:29 -


char matrix[3][3] = {
' ',' ',' ',
' ',' ',' ',
' ',' ',' '
};

void showgrid(void);

//...

void showgrid(void){
int i,j=0;
for(i=0;i<2;i++){
printf(" %c | %c | %c \n",matrix[i][0],matrix[i][1],matrix[i][2]);
printf("----|----|----");
}
}


 
Image
My forum: http://subsoap.com/ck/forums/index.php

vortex2



Registered
  27/05/2002
Points
  1406
13th May, 2004 at 21:35:37 -

yea I made it before school and the spaces got all messed up by TDC oops. well anyway tictactoe would be a good challange .

 
A bit of insanity with every bite!

Galaxy613



Registered
  29/01/2003
Points
  1765
13th May, 2004 at 22:23:07 -

the comp AI would be the hardest part

 
Image
My forum: http://subsoap.com/ck/forums/index.php

Kris

Possibly Insane

Registered
  17/05/2002
Points
  2017
15th May, 2004 at 09:09:13 -

shouldn't be too hard, there are hundreds of tutorials

Image Edited by the Author.

 
"Say you're hanging from a huge cliff at the top of mt. everest and a guy comes along and says he'll save you, and proceeds to throw religious pamphlets at you while simultaniously giving a sermon." - Dustin G

Kris

Possibly Insane

Registered
  17/05/2002
Points
  2017
29th May, 2004 at 16:01:23 -

Quick And Dirty : http://kris.acsv.net/ca.exe

oops, wrong version

Image Edited by the Author.

 
"Say you're hanging from a huge cliff at the top of mt. everest and a guy comes along and says he'll save you, and proceeds to throw religious pamphlets at you while simultaniously giving a sermon." - Dustin G

Imp of Hazard Games



Registered
  27/08/2003
Points
  781
4th June, 2004 at 05:34:43 -

The app requires alleg40.dll
You can get it here:
http://www.hazard-games.com/files/alleg40.dll
BTW - what is that spreading red stuff?

 
I need painters, musicians and animators!

Kris

Possibly Insane

Registered
  17/05/2002
Points
  2017
4th June, 2004 at 07:02:03 -

Sorry, I meant to upload the DOS version, but when I uploaded the allegro version I accidentally overwrote it. It's cellular automata (Game of life).

here's the right one: http://kris.acsv.net/dos_gol.exe

edit: thanks for giving the link though

Image Edited by the Author.

 
"Say you're hanging from a huge cliff at the top of mt. everest and a guy comes along and says he'll save you, and proceeds to throw religious pamphlets at you while simultaniously giving a sermon." - Dustin G
   

Post Reply



 



Advertisement

Worth A Click