Sorry your browser is not supported!

You are using an outdated browser that does not support modern web technologies, in order to use this site please update to a new browser.

Browsers supported include Chrome, FireFox, Safari, Opera, Internet Explorer 10+ or Microsoft Edge.

3 Dimensional Chat / I need help using DB pro

Author
Message
ALPHA ZERO PRODUCTIONS
21
Years of Service
User Offline
Joined: 28th Sep 2003
Location: Mom ! I forgot where we live !
Posted: 15th Mar 2004 05:01
I am a noob and i need help using DB PRO.
ALPHA ZERO PRODUCTIONS
21
Years of Service
User Offline
Joined: 28th Sep 2003
Location: Mom ! I forgot where we live !
Posted: 15th Mar 2004 05:15
HELP ME PLEASE
Cyberflame
21
Years of Service
User Offline
Joined: 4th Sep 2003
Location: Im not sure....
Posted: 15th Mar 2004 05:19
got--> newcomers forum

quad 10k terrahert cpu| 9k^9k terrabyte(tb) hd|stolen military graphics card capable of rendering all of the pixar movies in 5 secs|999^9k tb of ram

15in monitor with 13in veiwable screen
zircher
22
Years of Service
User Offline
Joined: 27th Dec 2002
Location: Oklahoma
Posted: 15th Mar 2004 07:27
The first thing that any old hat here will tell you is that you have to help yourself. Read the manual and help files cover to cover, go through every tutorial and code example on the CD and understand what each line is doing. After that, you'll have a working knowledge of the language and can ask better/more directed questions.
--
TAZ

walaber
21
Years of Service
User Offline
Joined: 22nd Oct 2003
Location: Los Angeles, CA
Posted: 16th Mar 2004 04:51
for goodness sake, you didn't even ask for any specific help! calm down, and read the manual, and look at the example programs!

Go Go Gadget DBPRO!

Athlon XP 2400+ || DDR-SDRAM 1GB || Nvidia GeForce 4 Ti4200 AGP 8x 128MB
ALPHA ZERO PRODUCTIONS
21
Years of Service
User Offline
Joined: 28th Sep 2003
Location: Mom ! I forgot where we live !
Posted: 18th Mar 2004 02:42
i did and i don't get it
Gir
22
Years of Service
User Offline
Joined: 17th Mar 2003
Location: Crazy Taco
Posted: 18th Mar 2004 12:20
Well just typing HELP HELP HELP isnt exactly constructive as you are just spamming. People are always willing to help if you have put a little thought into what you are doing.

I'm makin' a cake...
zircher
22
Years of Service
User Offline
Joined: 27th Dec 2002
Location: Oklahoma
Posted: 18th Mar 2004 18:18
Ok, let's try to figure out what 'it' is.

The commands in Dark Basic are small parts that are used to solve a problem. Sometimes it takes several commands to do the thing you want to do. For example, let's say you want to print in the upper left corner the current frames per second in red text. You'd use a command to to make remarks, change the ink color, a command to print, a command to fetch the current FPS, and some type of control structure such as a loop to constantly update the screen. Basic always reads and executes from top to bottom unless the flow of a program is changed by a program flow command like a do/loop.

For example...

rem use the rgb command to set the foreground ink to red
rem unless we change the color later, you only need to
rem execute this command once
ink rgb(255,0,0)

rem start a do/loop to display the FPS
do

rem get the FPS number and convert it to a string
a$ = str$(screen fps())

rem print the fps string in the upper left corner
rem there are other print and cursor commands this is
rem just one of them
text 2,2,a$

rem sync just means to update the screen as in synchronize
sync

rem loop tells us to go back to the DO statement and repeat
rem this is an infinite loop and the program will never go
rem anywhere else until you hit the ESC key and exit
loop

rem While our program will never get here, you should always
rem include an end statement. This will save your butt when
rem you start to add functions and other advanced stuff.
end

Login to post a reply

Server time is: 2025-06-28 11:09:00
Your offset time is: 2025-06-28 11:09:00