I feel like a complete noob for asking...but I need the help.
I'm making a VERY simple "sim" game for the DBpro challenge, I made two buildings and a sphere...all was working great, until I tried positioning the building somewhere other than the middle...they just disappeared..and I have no idea how to make them come up.
the codez...
REM Variables start
foodbh = 2
waterbh = 2
bz = 0
sync on
sync rate 40
rem make starting sim
make object sphere 1,0.5
color object 1, rgb (0,250,250)
rem make starting buildings
make object box 2,2,foodbh,2 : position object 2,211,220,0
color object 2, rgb (103,72,52)
make object box 3,2,waterbh,2 : position object 3,449,218,0
color object 3, rgb (0,0,250)
rem Make Playing area.
make object box 4,10,0.1,10:position object 4,0,-0.55,0
color object 4, rgb (250,250,250)
sync
REM position camera
position camera 0,10,-10
point camera 0,0,0
do
print mx
print my
print mz
mx = mousex()
my = mousey()
mz = mousez()
sync
loop
Any help appreciated,
Aarrowh
SOMEDAY, I will have coding skillz... :p