`-------------------------------------------------------------------------
`SmashBack
`-------------------------------------------------------------------------
cls
hide mouse
sync rate 0
sync on
paddlex=275
paddley=300
ballx=295
bally=290
`make player
Load Image "paddle.bmp", 1
`make ball
Load Image "ball.bmp", 2
`make blocks
Load Image "block.bmp", 3
sprite 2, 30, 285, 285
`paste paddle
paste image 1, paddlex, paddley
`paste ball
paste image 2, ballx, bally
do
`paddle movement
if leftkey() = 1 then dec paddlex,2
if rightkey() = 1 then inc paddlex,2
sync
loop
well, i fixed that problem, but for some reason i cant even get the darn paddle to move!
man, nothing i do works! i need serious help
.