Srry if this has been posted before.
I have two media files, The first post is the .x file, and the second is a picture, just keep them in the same file as the source code.
In order to make this code usable change the rotate object to wut ever. same with position ,etc.
Arrow keys - move around. Return - change angle. Space - Quit
I have it on two lines, not sure if its < 25 commands, but will fit on 3 garunteed.
Have fun.
hide mouse:make matrix 1,1000,1000,1,1:load object "ak47.x",1:load image "ak.jpg",1:position object 1,500,0,500:rotate object 1,0,0,90: texture object 1,1: scale object 1,500,500,500
x# = object position x(1):y# = object position y(1):z# = object position z(1):do:if rightkey() = 1:a# = a# +1:endif:if leftkey() = 1:a# = a# -1:endif:if upkey() = 1:b# = b# -1:endif:if downkey() = 1:b# = b# +1:endif:if returnkey() = 1:c# = (wrapvalue(c#+1)):endif:if spacekey() = 1:end:endif:point camera x#,y#,z#:set camera to follow x#,y#,z#,c#,a#,b#,1,0:loop
If at first you dont succeed, LOWER YOUR STANDARDS.