Quote: "Yes, i have tried that before. Did it again but it dousent work."
In that case, the only thing it can be is
where the command is used - and you do need to use STR$() and the text command as shown above btw.
As you've not supplied any code to look at, it's impossible to be certain, but it sounds like you might be trying to print a non-local variable in a function - or a local variable outside of the function it was created.
If this is the case, simply define a global variable.
Quote: "For the decrease and increase part i have, player_credit=player_credit -10. This should be correct right?"
Personally, I prefer
Dec player_credit,10
but they do the same thing. However the local/global aspect is the same.
If you create a function which contains A=100, then using
INC A outside of the function will be incrementing a different A to the one inside the function. You would need to make A global to make this work as you want it to.
TDK_Man