I don't know if this forum is meant for serious use only, but the calculator has a getkey function which only comes in handy when programming games.
My problem is:
I have programmed a snake game and everything works except drawing the snake itself.
My problem is that I'm using variables x and y as coordinats for the head of the snake.
However when I want to draw his head using:
text y, x, "O"my x and y variables are changed to floats which makes an error occur the next step.
A solution would be to replace x and y by other values. Which ones are best suited?
Also what happens with my x and y variables?
A bigger x seems to lead to a bigger x.
A bigger y seems to lead to a lower y.
I think these are graphic coordinats. How to get these right?
My graphic viewwindow setting is (1, 127, 1, 1, 63, 1) by the way.