huhu, I am going into the LITE-C Tutorial and i had the first FAIL in the first Physik Tutorial:

Click to reveal..
function main ()
{


level_load ("testrooma7.wmb");
fps_max = 140;
wait (15); // warte, bis das Level geladen ist
ball = ent_create ("ball.mdl", vector(0, 0, -256), NULL);
ent_create ("tetraeder.mdl", vector(40, 0, -256), NULL); // erstelle den Ball
ph_setgravity (vector(0, 0, -386)); // setze die Schwerkraft
phent_settype (ball, PH_RIGID, PH_SPHERE); // setze den Typus der Physik-Entity
phent_setmass (ball, 3, PH_SPHERE); // und ihre Masse
phent_setfriction (ball, 80); // setze die Reibung
phent_setdamping (ball, 40, 40); // setze die Dämpfung
phent_setelasticity (ball, 50, 20); // setze die Elastizität
while (1)
{
ball_speed.x = 25 * (key_cur - key_cul); // bewege d. Ball mithilfe d. Pfeiltasten
ball_speed.y = 25 * (key_cuu - key_cud); // 25 setzt die x- / y-Bewegungsgeschwindigkeiten
ball_speed.z = 0; // Bewegen auf der vertikalen Achse ist nicht nötig
phent_addtorqueglobal (ball, ball_speed); // füge d. Ball ein Drehmoment hinzu
camera.x = ball.x - 250; // halte d. Kamera 300 Quants hinter d. Ball
camera.y = ball.y; // verwende dasselbe y wie mit d. Ball
camera.z = -200; // und plaziere sie bei z = 1000 Quants
// camera.tilt = -90; // lasse sie nach unten schauen
wait (1);
}


}


Its the BALL Physik Movement and when i press the Key Arrows,the Camera starts to SHAKE very BADLY!
How can I get rid of this problem?
BIG THX to all who can help me laugh

MFG Ness