what are you all talking about? why would you use drawimage when you have sprite sheets?
why would you use nested IFs when you can use select case
This happens every time and I'm sure this has come up before BUT how do I change a square of the map$ array?
FOR EXAMPLE:
map$(1) = "1,1,1,0,P,0,1,1,1,1"
I want to make the "P" a "0". Is it REPLACE$ or is that a different purpose?
assuming your useing movex variables to track the player position you can do it in one line
let map$(1)=mid$(map$(1),1,moveX-1)+"0"+mid$(map$(1),moveX+1,len(map$(1)-moveX)
basically use mid$ command to take all the digits before and after the postition thats being editied