Is it true that when two keys are pressed in the same time then Blitz3D cannot detect a third key press?
take a look into the following code to see what I mean:
take a look into the following code to see what I mean:
While Not KeyHit(1) If KeyDown(203) And KeyDown(200) Print "I am moving diagonal!" Else Print EndIf If KeyDown(57) Print "I am firing!" Wend