| View previous topic :: View next topic |
| Author |
Message |
Predator04
Joined: 15 Jan 2007 Posts: 29
Digg It |
Posted: Tue Jan 16, 2007 4:10 am Post subject: [REQ] Breakout Script |
|
|
| a script for Aztec Bricks would be nice. its a basic breakout type game if anyone is interested in making it please feel free too i would love it! thanks!! |
|
| Back to top |
|
 |
Pat1487
Joined: 08 Jan 2007 Posts: 59
Digg It |
Posted: Tue Jan 16, 2007 5:48 pm Post subject: |
|
|
what are the controls in the game?
right arrow and left arrow to control the paddle?
any special controls? |
|
| Back to top |
|
 |
Predator04
Joined: 15 Jan 2007 Posts: 29
Digg It |
Posted: Tue Jan 16, 2007 10:32 pm Post subject: |
|
|
just a shoot button i belive witch is left mouse click. to control the paddle you move the mouse left or right. the best way to do it is like the racing controls and have like 1 and 2 to shoot
Last edited by Predator04 on Tue Jan 16, 2007 10:36 pm; edited 1 time in total |
|
| Back to top |
|
 |
Pat1487
Joined: 08 Jan 2007 Posts: 59
Digg It |
Posted: Tue Jan 16, 2007 10:35 pm Post subject: |
|
|
| and how do you want the wiimote set up, what buttons or motions of the wiimote do you want to use for what controls in the game |
|
| Back to top |
|
 |
Predator04
Joined: 15 Jan 2007 Posts: 29
Digg It |
|
| Back to top |
|
 |
Pat1487
Joined: 08 Jan 2007 Posts: 59
Digg It |
Posted: Tue Jan 16, 2007 10:52 pm Post subject: |
|
|
ok
| Code: | /*
Hold the wiimote horizontally, like an NES controller, use the dpad
to move the paddle, 2 to shoot, and home to go to the menu
*/
var.PaddleSpeed = 30
//Make PaddleSpeed lower if the paddle is moving to fast for you
//or higher if its to slow
if wiimote.down then
mouse.CursorPosX =mouse.CursorPosX + var.PaddleSpeed
elseif wiimote.Up then
mouse.CursorPosX =mouse.CursorPosX - var.PaddleSpeed
endif
mouse.LeftButton=wiimote.Two
key.Escape=wiimote.Home |
there you go |
|
| Back to top |
|
 |
Predator04
Joined: 15 Jan 2007 Posts: 29
Digg It |
Posted: Tue Jan 16, 2007 11:21 pm Post subject: |
|
|
| it works but can u make it motion sensored?. well nevermind its fine like that. can you make 1 and 2 to shoot. also if you make it were u get the up and down working so i can mouse the mouse to the menu? thanks sooo much for your time! |
|
| Back to top |
|
 |
|