Favourite games
- Member has no favourite games.
Recently Played Games
Reviews By This Member
-
Overall Score
-
Graphics
-
Sound
-
Gameplay
-
Story
-
Interface
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
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