Hi once agian I ran into a real noobie problem, i was wondering how in the world do you get two functions to work at the same time. I need a timer to run while you are playing the game, When I put the Timer() function before the function Ball1Main() the Timer() function is the only one that will run. But when they are switched the Ball1Main() function works while the Timer() function dosen't.
An example:
If a=0
setbuffer backbuffer()
While Not Keydown(1)
Timer() ;<\\\\\\\\\\\\\\\\\\\\\\\\\\\\
;They need to work together.
Ball1Main() ;<////////////////////////////
Wend
EndIf
Also I have tryed to put the two functions into one, and agian it wont work as one, it works as two. One of the scrips takes over and the other one dosent even show.
An example:
If a=0
setbuffer backbuffer()
While Not Keydown(1)
Timer() ;<\\\\\\\\\\\\\\\\\\\\\\\\\\\\
;They need to work together.
Ball1Main() ;<////////////////////////////
Wend
EndIf
Also I have tryed to put the two functions into one, and agian it wont work as one, it works as two. One of the scrips takes over and the other one dosent even show.