26.09.2009, 14:37
dude, this is a easy prob to fix!!!! Just put a tab on the 806 line. watch...
should work!!!
Код:
798 IsPlayerInInvalidNosVehicle(playerid,vehicleid){ 799 800 new InvalidNosVehicles[MAX_INVALID_NOS_VEHICLES] ={ 801 581,523,462,521,463,522,461,448,468,586, 802 509,481,510,472,473,493,595,484,430,453, 803 452,446,454,590,569,537,538,570,449, 804 }; 805 806 vehicleid = GetPlayerVehicleID(playerid); 807 808 if(IsPlayerInVehicle(playerid,vehicleid)){ 809 for(new i = 0; i < MAX_INVALID_NOS_VEHICLES; i++){ 810 if(GetVehicleModel(vehicleid) == InvalidNosVehicles[i]){ 811 return true; 812 } 113 } 114 } 115 return false; }