24.07.2010, 11:35
Quote:
Unfortunately, all of the possible hidden vehicle colours have been found.
Vehicle colours are stored in one unsigned byte, so their values range from 0 to 255. As Vince said above, values higher than 255 will simply wrap around (so 256 is 0, 257 is 1, 300 is 44 etc) Using modulo (remainder of a division) on a number is a quick way to see what a value would be when it has been limited to 256 (0 to 255) values. So, for example 3223 % 256 = 151 which upon checking on the image above shows 151 is the same red as you showed for 3223. So in conclusion, yes - your colours will show up on vehicles fine, but they are not new or any different to the ones on the image above. |