Sorry your browser is not supported!

You are using an outdated browser that does not support modern web technologies, in order to use this site please update to a new browser.

Browsers supported include Chrome, FireFox, Safari, Opera, Internet Explorer 10+ or Microsoft Edge.

2D All the way! / Moving Sprites

Author
Message
MakcKid
20
Years of Service
User Offline
Joined: 4th Feb 2004
Location:
Posted: 7th Feb 2004 05:28
Hey. I've been trying to load a sprite and move it using left, right, up, and down, but I haven't been suceeding. Please help.

Thanks a lot.

.....
comando 300
20
Years of Service
User Offline
Joined: 23rd Nov 2003
Location:
Posted: 7th Feb 2004 05:56
load image "image.bmp",1
x=250
y=250
do
if upkey()=1 then y=y-5
if downkey()=1 then y=y+5
if rightkey()=1 then x=x+5
if leftkey()=1 then x=x-5
sprite 1,x,y,1
loop

Is just of those days when you don't wanna wake up everything is *****, everybody sucks you really don't know why, but you wanna justify rippin' someone head off!
MakcKid
20
Years of Service
User Offline
Joined: 4th Feb 2004
Location:
Posted: 7th Feb 2004 18:26
Thank you so much.
That's all I needed.

.....
MakcKid
20
Years of Service
User Offline
Joined: 4th Feb 2004
Location:
Posted: 7th Feb 2004 18:32
I have another problem, when i press left, right, up, or down, the sprite just disappears. I can't see it on the screen. Do you know what's wrong?

thanks

.....
X_MEN
20
Years of Service
User Offline
Joined: 14th Sep 2003
Location:
Posted: 7th Feb 2004 20:20
`try this hope it help you need to add
`sync in your loop to see the sprite move


load image "image.bmp",1
sync on
x=250
y=250
do
if upkey()=1 then y=y-5
if downkey()=1 then y=y+5
if rightkey()=1 then x=x+5
if leftkey()=1 then x=x-5
sprite 1,x,y,1
sync
loop

You can do it if you try
MakcKid
20
Years of Service
User Offline
Joined: 4th Feb 2004
Location:
Posted: 7th Feb 2004 23:25
Thank you so much. Now it works.

.....
comando 300
20
Years of Service
User Offline
Joined: 23rd Nov 2003
Location:
Posted: 8th Feb 2004 15:57
oh sorry, I forgot about the "sync"

Is just of those days when you don't wanna wake up everything is *****, everybody sucks you really don't know why, but you wanna justify rippin' someone head off!

Login to post a reply

Server time is: 2024-05-12 19:48:02
Your offset time is: 2024-05-12 19:48:02