hello, I was just wondering how do you use the #INCLUDE command?
Ok lets say I have two .dba files and one of them is my main program file and the other is the sub program file. here is what the main program files say's:
sync on : sync rate 40
#include "subprogram.dba"
do
sync
gosub command_from_subprogram
print h
loop
----------------------------- and here is the sub program:
sync on : sync rate 40
command:
h = h + 60 : sync
return
------------------------------------------------------
now I know this does not work but it said in the command listing in the help menu that this command "command_from_subprogram" would go to the sub program go to "command:", read the code and go back to the main code and print h which sould be 60. (long sentence.
can someone help me on how I could use the gosub to go to a certain sub program?
:thank you in advance and sorry about the long post but I really need help in this

thnxs!
sov the game creator!