You're status is too new on these forums so the Source button wont work, put the code in the
tags in the actual message.
Im pretty sure that I know whats happening, and it's no bug with DBP but a bug with your code.
Im guessing your code is something like this;
IF SPACEKEY()=1
TEXT 0,0,"Fire"
ENDIF
The program is doing exactly what you're telling it, its only displaying "Fire" when SPACEKEY()=1. To bypass this, you can do a few things, probably the simplest would be to create a variable, maybe called Display, and set it to 1 when you want Fire to be displayed and 0 when you dont. So something like this;
IF SPACEKEY()=1
Display=1
ENDIF
IF Display=1
TEXT 0,0,"Fire"
ENDIF
Not sure why you'd want Fire to be displayed constantly on the screen, if you dont you can do a few things to remove the Fire from the screen again. First, you could use what you had when it displays Fire only when the spacekey is pressed, but since youre posting thats a problem you could maybe either set a different key to stop Fire from being displayed, or create a Timer using the Timer() command or your own custom function.
If this isnt the problem post your code in the code tags and we'll try to help some more.
Just so you know, to post in the code tags, put the code in the message, select it with the mouse and click the code button above the emoties at the top. Just a note Mozilla sometimes screws up when you click the code button by just putting a code tag at the very bottom of the message, if thats the case just manually type [ code ] before the code and [ /code ] after the code, without the spaces.
<EDIT>
Oh, the message above mine could be the problem too
)
</EDIT>
Goodluck,
- RUC'