Hi,
Press alt+e wile in mig, find code: this.set_fps_camera_pos({x:-0.0,y:4.8,z:2.9});
and change y:4.8 to smaller value, like y:4.6. Then reload the script.
You can also want to hide pilot body in cockpit view, to do that find this code (at the end of the script):
if (this.get_camera_mode() < 1 ) {
geom.set_mesh_visible_id(head_dummy_id, false);
geom.set_mesh_visible_id(head_dummy1_id, false);
geom.set_mesh_visible_id(Object387_id, false);
//geom.set_mesh_visible_id(Object02_id, false);
//geom.set_mesh_visible_id(Object384_id, false);
geom.set_mesh_visible_id(Object401_id, false);
}
else {
geom.set_mesh_visible_id(head_dummy_id, true);
geom.set_mesh_visible_id(head_dummy1_id, true);
geom.set_mesh_visible_id(Object387_id, true);
//geom.set_mesh_visible_id(Object02_id, true);
//geom.set_mesh_visible_id(Object384_id, true);
geom.set_mesh_visible_id(Object401_id, true);
}
and remove all the "//" in it.
P.s. Also you can simply change field of view in the Anteworld graphics settings, set it a bit higher.