For some reason I can't get this sprite to display. Any thoughts?
Here is my code:
Rem Project: M7
Rem Created: Thursday, September 15, 2011
Rem ***** Main Source File *****
sync on
sync rate 30
playerx=100
playery=100
pfstart=1
pfend=3
create animated sprite 1,"image.bmp",3,4,1
do
play sprite 1,pfstart,pfend,100
sprite 1,playerx,playery,1
`INPUT-----
if upkey()=1
up=1
pfstart=10
pfend=12
endif
if downkey()=1
down=1
pfstart=1
pfend=3
endif
if leftkey()=1
left=1
pfstart=4
pfend=6
endif
if rightkey()=1
right=1
pfstart=7
pfend=9
endif
text 10,10,str$(upkey())+str$(downkey())+str$(leftkey())+str$(rightkey())+str$(pfstart)+str$(pfend)
sync
loop
Thanks for any suggestions!!!
RAWWWR