im tryin to make the white box that appears around my sprite transparent
rem load images
load image "c:\users\jon\pictures\sprites\spriteup.jpg",1
load image "c:\users\jon\pictures\sprites\spriteright.jpg",2
load image "c:\users\jon\pictures\sprites\spritedown.jpg",3
load image "c:\users\jon\pictures\sprites\spriteleft.jpg",4
rem state what image first comes out
c = 2
x=1
y=1
sync rate 256
do
cls
ink color,0
rem keys = what image is show ex: leftarrow is char facing left
if upkey() then c = 1
if rightkey() then c = 2
if downkey() then c = 3
if leftkey() then c = 4
rem character movement
repeat if rightkey()=1 then x = x+1
sprite 1,x,y,c
until rightkey()=0
repeat if leftkey()=1 then x = x-1
sprite 1,x,y,c
until leftkey()=0
repeat if upkey()=1 then y=y-1
sprite 1,x,y,c
until upkey()=0
repeat if downkey()=1 then y=y+1
sprite 1,x,y,c
until downkey()=0
loop
do:me/repeat that again
until im done
loop