HI, I\\\\\\\\\\\\\\\'m a complete newcomer to gameprgraming, i have no experence and im not finding the tutorial/help included with darkBASIC pro very usefull at all. i mean im just starting out simple, i want to write some text, position it in the font and color of my desire, not complicated i would have thought, well the examples just give a huge code of floating \\\\\\\\\\\\\\\"commodore64\\\\\\\\\\\\\\\" style text, leaving me with no choice but sift thru it all, deleting parts of the code till i can figure out what does what :s, surely theres a quicker way than that?!
anywho , heres wat ive figured out so far... how to position text where i want it..
******************************************************************
desc$="THIS IS txt AT 20 BY 40"
ONE$="THIS Is AT 100 BY 500"
YELLOW$="BY CHANGING THE TXT AND THE NUMBERS"
HOUSE$="I CAN CHANGE THE POSITION OF THE TXT, TOOK ME HOURS TO FIGURE THAT OUT!!!!"
do
SET TEXT SIZE 0.2
text 20,screen height()-40,desc$
text 100,screen height()-500,ONE$
text 1,screen height()-200,HOUSE$
text 250,screen height()-400,YELLOW$
loop
****************************************************************
if anyone can help me change the colour and font of the text id apriciate it.
pixg