Favourite games

  1. Member has no favourite games.

Reviews By This Member

  • Overall Score rating rating rating rating rating rating
  • Graphics rating rating rating rating rating rating
  • Sound rating rating rating rating rating rating
  • Gameplay rating rating rating rating rating rating
  • Story rating rating rating rating rating rating
  • Interface rating rating rating rating rating rating
pingu895

Seeneuss 1
Game: Seeneuss 1.1
Added: 13 April 2008
Created by: pingu895

Pros: Simple but nice graphics.
Cons: No stroy.

Comments By This Member

View Comment

over 3 years ago pingu895 commented on the game Internal PC Speaker Beep - Mario Song

Its not worth making beeping program in GameMaker. If you learn a little bit C++ its even more simple than making it in game maker and the file will be about 2MB smaller! First, get a c++ compiler. I use Dev-C++ Open it and paste this code: #include <windows.h> //needed for beeping #include <iostream> int main() { Beep( 150, 1000 ); /*this is the beep command, its same as the one in your dll, but it must be capitalized in c++ */ } See, its that simple and takes much less room