sync on
sync rate 0
`/\ will be 60 because of vsync (unless monitor says otherwise)
AA = 2
set display mode 640, 380, 32, 1, AA, 0
make object box 1, 1, 1, 1
position camera 1.5, 1.67, 0.89
point camera 0, 0, 0
valuex as float
valuez as float
valuex = 0
valuez = 0
do
if rightkey() = 1 then valuex = valuex+0.5 : xrotate object 1, valuex
if leftkey() = 1 then valuex = valuex-0.5 : xrotate object 1, valuex
if upkey() = 1 then valuez = valuez+0.5 : zrotate object 1, valuez
if downkey() = 1 then valuez = valuez-0.5 : zrotate object 1, valuez
sync
loop
That should work. The main thing is just the set display mode _, _, _, _, AA, _
Also, make sure your GPU isn't set to force a specific AA setting (make sure it's set to controlled by application in your Catalist Control center or Nvidia Control Panel or whatever you have)
swis