Probably a year or two ago I purchased the dark game bonanza thing that came with physics, AI, shader, lights, extends, etc..
I am running DBPro U77 in adminstrator, and when I try to do "Phy start" or "ai start" it says it's a unrecognized command even though it turns blue when I type it.
I was JUST gonna use PhysX for collision testing..
Does anyone know what's wrong or if anyone else has had this problem before?
Thanks.
sync on
sync rate 30
ai start
make camera 1
set window size 1024,780
deskx = desktop width()
desky = desktop height()
set window position deskx / 6, desky / 8
make object cube 1,20
make object cube 2,20
make object cube 3,20
make object cube 4,20
make object sphere 5,20
position object 1,0,0,0
position object 2,40,0,0
position object 3,0,0,40
position object 4,30,0,30
position object 5,30,0,-30
do
x = object position x(1)
y = object position y(1)
z = object position z(1)
position camera 1, x,y+120,z
point camera 1,x,y,z
if (keystate(200) = 1)
z = z + 1
endif
if (keystate(208) = 1)
z = z - 1
endif
if (keystate(203) = 1)
x = x - 1
endif
if (keystate(205) = 1)
x = x + 1
endif
position object 1,x,y,z
sync
loop
DBPro U77 Activated
All updates for the plugins
MS Windows 7 64-bit SP1 Professional
AMD Phenom II X4 970 34 °C
8.0GB Dual-Channel DDR3 @ 666MHz (9-9-9-24)
ASUSTeK Computer INC. M4N98TD EVO (AM3)
NVIDIA GeForce GTX 470
Any help at all would be appreciated, this sure is a stump in my programming
Always program as if the person maintaining your program is a psychopath that knows where you live