Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Hi! Sorry for the delay. I have just built the standard I/O version of Connect 4 for the Z88 / BBC Basic Target using z88dk.
It actually works, but needs some more tweaks to improve usability on the Z88... I'll try to improve it.

You can see it in action (OZvm emulator) in the video below:

Hope to give more updates soon!

This is wonderful!! I have shared the video on TG with the Z88 community there. Great to see the game taking shape. I can't wait to see how you make it work. Thank you!

(2 edits)

For the z88 version, try....

printf("    %c[1m Connect Four %c[2m  \n",27,27);

instead of (at 363)

printf("\n\n     ### Connect four ###\n\n");

I tried this too...

 // stampaRigaPiena();  //Stampo prima riga |---|---|--... (not printing this saves a line.)
  printf("|");
  for(j=1; j<=C; j++)
    printf(" %d |", j);
 if(j<=C-1){printf("\n");}  // Print 'enter your move' without creating a new line

What do you think?