Every Blitz3D Command

Blitz3D Forums/Blitz3D Programming/Every Blitz3D Command

Zach3D(Posted 2006) [#1]
I know this may be asking alot but is there a list anywhere
that has every blitz3D (2D and 3D) functions on a text file, and it includes the parameters ex) Color(R,G,B)
and its on a text file or something, so that it is printable?


n8r2k(Posted 2006) [#2]
george made the b3d manual into a .pdf a while ago. it may help. Only around 1000 pages or so maybe more. http://mysite.verizon.net/vze79k4u/sitebuildercontent/sitebuilderfiles/BlitzBasicManual.zip


Ross C(Posted 2006) [#3]
The way i used to do things, is, i'd have a problem i'd need solving. Figure out if i could get by using maths. If not, search the manual for a command that could help me out.


OJay(Posted 2006) [#4]
have fun with it:


if you want to create that list by your own:
blitzcc +k > c:\blitz.txt

will create a file c:\blitz.txt and will put all commands in it.

note: you have to set the environment-variable "blitzpath" by hand to be able to execute blitzcc.exe from the commandline.
another note: you might want to rename the "userlibs"-folder to something different, or else you get all your userlibs as well into that file ;)

cheers