Update I got a mouse mode to work just dont know which one it is or how to change it to the one I want. heres the current script.

#include <acknex.h>
#include <default.c>

ENTITY* pistal_ent =

{
type = "pistal.mdl";
layer = 10;
view = camera;
x = 20;
y = -10;
z = -10;
}
action my_cbabe()
{
while (1)
{
if (key_a)
my.pan += 3*time_step;
if (key_s)
my.pan -= 3*time_step;
if (key_space)
c_move (my, vector(15 * time_step, 0, 0), nullvector, GLIDE);
wait (1);
}
}
function main()
{
video_mode = 7;
level_load ("Testlvl.wmb");
while (1) //
{ //
//
camera.pan -= mouse_force.x; //this is were Im having the mouse mode
camera.tilt += mouse_force.y; //problems
//
wait (1); //
}



}

P.S. still havent figured out the other problems from last post.