27.08.2013, 11:53
Do you show the name of the vehicle? If so, you need to check if the modelid is between 400 and 611. Else it will crash your server.
In Speedometer_Update:
In Speedometer_Update:
pawn Код:
new
modelid = GetVehicleModel( GetPlayerVehicleID( playerid ) )
;
if( modelid >= 400 && modelid <= 611 )
{
// rest of the code;
// show the name of the vehicle
}