a game with no name
Author |
Message |
shoobyman

|
Posted: Mon Oct 30, 2006 5:52 pm Post subject: a game with no name |
|
|
ok , you control the ball with the mouse and try to dodge the lines. hold down the left mouse button to use force field and you will not get hurt. don't quit too soon though, because it gets a little harder.
what do you think of the game?
Description: |
|
 Download |
Filename: |
a game.t |
Filesize: |
6.56 KB |
Downloaded: |
216 Time(s) |
|
|
|
|
|
 |
Sponsor Sponsor

|
|
 |
lordroba

|
Posted: Mon Oct 30, 2006 7:04 pm Post subject: (No subject) |
|
|
I like it. Fun and simple. Kind of reminds me of that one flash game with the squares. One suggestion. Change the background colour to 29 or 30. This way you have a bit more contrast between the background and the bullets (it makes them easier to see). Other than that, keep up the good work.
|
|
|
|
|
 |
Windsurfer

|
Posted: Mon Oct 30, 2006 9:15 pm Post subject: (No subject) |
|
|
I think you mean Squares 2
P.S. Good job.
There's a glitch: Keep your muse in the very top right pixel, and they can't touch ya.
|
|
|
|
|
 |
TheOneTrueGod

|
Posted: Tue Oct 31, 2006 2:07 pm Post subject: (No subject) |
|
|
Quite good, one bit of advice for coding though.
code: |
bulx (1) += speed (1)
bulx (2) += speed (2)
bulx (3) += speed (3)
bulx (4) += speed (4)
bulx (5) += speed (5)
if level >= 3 then
buly (6) += speed (6)
buly (7) += speed (7)
buly (8) += speed (8)
buly (9) += speed (9)
buly (10) += speed (10)
end if
|
can be easily simplified with for loops.
code: |
for i : 1..5
buly(i) += speed(i)
end for
if level >= 3 then
for i : 6..10
buly(i) += speed(i)
end for
end if
|
|
|
|
|
|
 |
shoobyman

|
Posted: Tue Oct 31, 2006 5:02 pm Post subject: (No subject) |
|
|
thanks for the feedback, and thanks for pointing out the glitch, i will fix that. The reason I kept background colour dark was so you could see the electricity, but it is hard to see bullets so i will brighten it up.
btw there is another glitch, if you move offscreen you can just hold down a key and everything will pass by, i will work on that too .
|
|
|
|
|
 |
|
|