Hex to ARGB - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Hex to ARGB (
/showthread.php?tid=605435)
Hex to ARGB -
ScIrUsna - 19.04.2016
Hi,
I need simple function which converts hex to argb.
Re: Hex to ARGB -
Saliim - 19.04.2016
in a command in const use { } with color html in ******
example:
SendClientMessage(playerid, COLOR_RED,"{ff0000} hi bro {AAEE00}how are you ?");
Re: Hex to ARGB -
Vince - 19.04.2016
The hexadecimal number system is often used to
represent colors in a fairly interpretable format. But
"hex" isn't a thing in itself. Your question is therefore ambiguous. What you want is probably this:
PHP код:
RGBAToARGB(color)
{
new alpha = color & 0xFF;
return ((color >>> 8) | (alpha << 24));
}
Re: Hex to ARGB -
ScIrUsna - 19.04.2016
When i use string i get argument type mismatch (argument 1)