yes ive done all of those things.
my new pc has windows 7 home premium
dx 11
didnt look up video card but a serious nvidia 3d card
i dont think the problem is my pc at all
also i know the cc can only be 1 number.
here,i made this small prj 2 test if dbp is deleting the character controller & it didnt.every time i clicked controlkey i could still
move the box.
phy start
make object box 1,90,1,90
color object 1,rnd(50000)
phy make rigid body static box 1
make object cube 2,6 : position object 2,0,10,0
color object 2,rnd(50000)
do
if spacekey() and me=0 then phy make box character controller 2,object position x(2),object position y(2),object position z(2),1,1,1,1,1,1 : me=1
if controlkey() and me=1 then phy delete character controller 2 : me=0
if me=0
if upkey() then phy move character controller 2,0.1
if leftkey() then turn object left 2,0.05
if rightkey() then turn object right 2,0.05
endif
phy update
LOOP