I am working on this fun little game and when I press one key to delete one sprite it delete every other sprite. What is wrong here?
sync on
sync rate 60
set display mode 800,600,32
load image "BOARD.png",1
load image "cSprite.png",2
load image "vSprite.png",3
load image "bSprite.png",4
cX=285
cY=20
vX=335
vY=20
bX=385
bY=20
sprite 2,285,30,1
do
cls
set cursor 0,0
sprite 1,cX,cY,2
sprite 3,vX,vY,3
sprite 4,bX,bY,4
cY=cY+1
vY=vY+1
bY=bY+1
if inkey$()="c" and cY=375 or cY=376 or cY=377 or cY=378
hide sprite 1
endif
if inkey$()="v" and vY=375 or vY=376 or vY=377 or vY=378
hide sprite 3
endif
if inkey$()="b" and bY=375 or bY=376 or bY=377 or bY=378
hide sprite 4
endif
sync
loop

Formerely Cool Guy Jordan