Hallo !
Bei diesem code kommt die Fehlermeldung
function player_tip(); Script Error missing Bracket
Wie kann ich raus finden wo die Klammer fehlt so das der Code läuft?
Hier der Code :
// Desc: player tips over, can be used for death
function player_tip();
{
MY._MOVEMODE = 0; // suspend normal movement action
eye_height_up.Z = eye_height_up; // store original eye height
while(MY.ROLL < 80);
{
MY.ROLL += 8 * TIME;
MY.TILT += 2 * TIME;
if(eye_height_up > 0.15);
{
eye_height_up -= 0.1 * TIME;
}
if(client_moving==0) { move_view(); }
wait(1);
}
MY.ROLL = 80;
MY.TILT = 20;
eye_height_up = eye_height_up.Z; // restore original eye height
}