Thanks, Marco
I have another question. Sorry to trouble you.
1. Please explain me this line :
if(abs(angRL)>abs(angRR)) {angSpeed=-angRL;} else {angSpeed=angRR;}
In my multiplayer car, if i do this line, my car is not going faster and braking.
And i changed it to this
if (abs(angRL)>abs(angRR)) { angSpeed=angRL;} else {angSpeed=angRR;}
and it is working but key_down is acting same as key_brake.
Why did you put sign(-) before angspeed of rear left wheel ?
2. Please tell me tips about making car's handbraking ?
If you make handbraking when car speed is very high, car will stop changing orientation /I don't know how to call it/. In your tutorial car doesnot change
it's orientation, it will just stop.