I am currently using DB pro on a windows 7 net book so the specs on it are not that great. I recently started this again and thought to freshen up on just some basic stuff, I made a cube and told it to rotate which it did, now after i delete the line that tells the cube to rotate when i make the program run its still spining. I only have like 2 lines of code i know that command is not still in there i run the debugger and it works how its suppose to not spinning, but when i hit esc it leaves the debugger runs the program where the cube is spinning again. I hit esc again and it goes back to the screen with all my txt.
rem initialize
sync on
sync rate 100
backdrop off
hide mouse
rem load all media for game
gosub _loadgame
rem setup all objects for game
gosub _setupgame
rem game loop
rem Initialize
do
gosub _playercontrol
gosub _weapons
gosub _enemies
rem LVLing + Kills + Live zombies
gosub _stats
Loop
_loadgame:
make object cube 1,50
position object 1,50,50,50
make object cone 2,50
position object 2,-50,-50,-50
make object cone 3,50
position object 3,50,-50,50
return
_setupgame:
return
_playercontrol:
return
_weapons:
return
_enemies:
return
_stats:
return