Hi I'm trying to get the complex map from leadworks to load in to darkbasic pro.
I ran the export on 3D world studio and coded it in to darkbasic.
Can someone help me by showing me what I'm missing in my code as I get what you see in the image. I don't want comments about the rem parts as I want to see the map load up as it should frist.
Thanks for your time.
Here is a copy of my code
sync on
sync rate 60
hide mouse
gosub load_game
gosub setup_game
do
gosub control_player
gosub control_gunandbullet
gosub control_enemies
sync
loop
control_player:
rem player movement
return
control_gunandbullet:
rem gun and ammo
return
control_enemies:
rem enemies control and helth
return
control_stats:
rem helth
return
setup_game:
return
load_game:
load object "C:\Documents and Settings\computer\Desktop\game project\worlds\complex.dbo",1
make camera 1
set camera range 1,100000
autocam off
sync
return
I'll add something later on.