What do you mean? Like the first lines we start our programs out?
Setup:
`Sets up everything
sync on: sync rate 90: autocam off
backdrop on
set display mode 1024,800,32
set window title "???????????????/"
set text size 32
color backdrop rgb(192,192,192)
ink rgb(255,255,255),1
Don't quite know exactly what you're talking about. Here's some more common stuff I use though.
Movement:
Do
set cursor 0,0
print "FPS" : print screen fps()
print "Polygons" : print statistic(1)
print mousex() :print "mouse x"
print mousey() :print "mouse y"
`controls
if upkey() then move camera 1
if downkey() then move camera -1
if leftkey() then turn camera left 1
if rightkey() then turn camera right 1
if shiftkey()
pitch camera up 90
move camera 1
pitch camera down 90
endIf
if controlkey()
pitch camera up 90
move camera -1
pitch camera down 90
endIf
sync
loop
Note: These are taken directly out of one of my programs I'm currently working on.They can be easily modified at your own will if you like.
A book? I hate book. Book is stupid.