I'm having problems... I am making a shooter game with Dark BASIC Pro but I cannot make the limbs work properly... The file always closes right after it's opened. Please help! (Here's my code
Rem [NAME WITHELD] Game
Rem Created by [NAME WITHELD]
Rem * * * * * * * * * *
Rem Beginning Setup
Sync On
Autocam Off
Position Camera 0, 0, 0.005
Set Camera Range 0, 10000
Rem Handgun
Rem Barrel
Make Object Box 1, .05, .01, .008
Position Object 1, 0, 0, 0
Rem Handle
Make Object Box 2, .03, .01, .005
Position Object 2, -.02, -.013, 0
Rotate Object 2, 0, 0, -120
Rem Trigger
Make Object Sphere 3, 10
Rem Barrel/Handle Bind
Make Mesh From Object 1, 1
Add Limb 1, 1, 1
Rem Bind Objects
Glue Object To Limb 1, 2, 1
Rem Ending Setup
Rem Camera Control
Do
If upkey()=1 Then Move Camera .0005
If downkey()=1 Then Move Camera -.0005
If leftkey()=1 Then Turn Camera Left .1
If rightkey()=1 Then Turn Camera Right .1
Sync
Loop