01.03.2011, 15:12
Please help.
Warring:
Код:
stock UpdateVehiclePlates ( vehicleid ) { new string[11]; if ( SVehInfo [ vehicleid ][ vOwner ] > 0 ) { if ( strcmp ( SVehInfo [ vehicleid ][ vPlate ], "None" ) ) { if ( VehicleHasEngine ( vehicleid ) ) { PlateText [ vehicleid ] = Create3DTextLabel ( SVehInfo [ vehicleid ][ vPlate ], COLOR_COPBLUE, 0, 0, 0, 20.0, 0, false ); Attach3DTextLabelToVehicle ( PlateText [ vehicleid ], vehicleid, 0.0, 2.0, 0.0 ); format ( string, 10,"%s", SVehInfo [ vehicleid ][ vPlate ] ); SetVehicleNumberPlate( vehicleid ); // 2838 } } } }
Код:
scripts\system\vehicles.pwn(2838) : warning 202: number of arguments does not match definition