Posted: Mon Jun 20, 2005 1:37 pm Post subject: PINBALL
This is a pinball game that I made for my final project in computor science class. It is pretty much complete. A few things are not working right yet, such as the high scores thing, but hopefully I can figure it all out soon. Here it is.
Posted: Tue Jun 21, 2005 11:06 am Post subject: (No subject)
Nice game Nick. The blinking ball, and square is kind of annoying but it works. Nice credits but you should have use parameters for your wordfade procedure like this:
code:
procedure wordfade (words, words2 : string)
for i : 17 .. 30
Font.Draw (words, 400, 400, font1, i)
Font.Draw (words2, 400, 400, fontc, i)
delay (150)
end for
delay (1000)
for decreasing i : 30 .. 17
Font.Draw (words, 400, 400, font1, i)
Font.Draw (words2, 400, 400, fontc, i)
delay (150)
end for
Font.Draw (words, 400, 400, font1, 7)
Font.Draw (words2, 400, 400, fontc, 7)
delay (500)
end wordfade
and then to use it you just type this instead of using some variables: