PAGE BREAKER
Ready and willing.
I could probably translate that to C and supply an Windows executable with the source, if there's interest. Interest would probably depend on how easy cygwin is to install/use...
#include <stdio.h> #define INPUTBUFFERSIZE 15 int main (void) { char inputbuffer[INPUTBUFFERSIZE]; printf ("\033[32mZebes\033[0m\n\n\nMETROID\n"); printf ("Retro Studios - a science fiction story\n"); printf ("Copyright (c) 2001 by Retro Studios,Inc\n"); printf ("All rights reserved.\n\n\n"); printf ("You see a Metroid(tm).\n\n>"); while (0x1) { fgets (inputbuffer, INPUTBUFFERSIZE, stdin); if (strncmp ("shoot metroid\n", inputbuffer, INPUTBUFFERSIZE-1) == 0x0) printf ("\nYou shoot the Metroid(tm).\nYou see another Metroid(tm).\n\n>"); else break; } printf ("You died!\n"); return 0x0; }