18.08.2015, 22:17
The binary number is explained in the wiki page (last reply)
You can simply use it or convert it by any calculator
What you want is 0b00000100_00000100_00000000_00000000
You can simply use it or convert it by any calculator
What you want is 0b00000100_00000100_00000000_00000000
pawn Код:
UpdateVehicleDamageStatus(i, panels, 0b00000100_00000100_00000000_00000000, lights, tires);
// or
UpdateVehicleDamageStatus(i, panels, 67371008, lights, tires);
// or
UpdateVehicleDamageStatus(i, panels, 0x4040000, lights, tires);