Maybe this helps
http://www.opserver.de/ubb7/ubbthreads.php?ubb=showflat&Number=30905

http://www.opserver.de/ubb7/ubbthreads.php?ubb=showflat&Number=30905

Very Basic cam (not tested)
Code:
while (1){
   vec_set (camera.x, my.x);
   camera.z += 100;
   camera.tilt = 80;
   wait (1);
}


and for zoom u could mod this example from manual (with mickey.z 4ex)
Code:
void sniper()
 {
   while(1)
   {
     if(mouse_right) // right mouse button pressed
     {
       camera.arc = max(camera.arc - time_step, 30);	 // reduce fiel of view
     }
     else
     {
       camera.arc = min(camera.arc + time_step, 60);    // increase fiel of view
     }
     wait(1);
   } 
 }



greets





Acknex umgibt uns...zwischen Dir, mir, dem Stein dort...
"Hey Griswold ... where u gonna put a tree that big ?"
1998 i married my loved wife ... Sheeva from Mortal Kombat, not Evil-Lyn as might have been expected
rayp.flags |= UNTOUCHABLE;