13.06.2015, 18:00
Hello, I have a problem with a function, The Function converts a number of base 10 to a number of base 16, This is the Function:
The Problem is what just detected RGB for It not detected the Alpha.
Код:
stock IntToHex(int)
{
new string[11];
format(string, sizeof(string), "0x%06xFF", int >>> 8);
return string;
}

