Hey!
Im really new to DBPro,and I like it very much!I wanted to import my fpsc level in DBPro and i tried-
set dir "files"
hide mouse
load object "levelbank/testlevel/universe.dbo",1
do
rotate camera camera angle x(0)+(mousemovey()/2.0),camera angle y(0)+(mousemovex()/2.0),camera angle z(0)+(mousemovez()/2.0)
rem Control player movement
cx#=camera angle x(0) : cy#=camera angle y(0)
if upkey()=1 then xrotate camera 0,0 : move camera 0,20 : xrotate camera 0,cx#
if downkey()=1 then xrotate camera 0,0 : move camera 0,-20 : xrotate camera 0,cx#
if leftkey()=1 then yrotate camera 0,cy#-90 : move camera 20 : yrotate camera 0,cy#
if rightkey()=1 then yrotate camera 0,cy#+90 : move camera 20 : yrotate camera 0,cy#
if wrapvalue(camera angle x(0))>40 and wrapvalue(camera angle x(0))<180 then xrotate camera 0,40
if wrapvalue(camera angle x(0))>180 and wrapvalue(camera angle x(0))<280 then xrotate camera 0,280
loop
But how do i make my player(camera...)spawn in the room?Not go through walls?Gravity?
Maybe those questions are really noobish...but I would really appreciate any help!