Functions and macros for working with colors in a script. They can work with functions that can send a message to the player, e.g. SendClientMessage, SendClientMessageToAll, etc..
- Download library.
- All files move into folder
pawno/includes
. But, you can use the flag-i<path>
to specify an alternative path. - Include it:
#include <a_samp> // standart SAMP library
#include <tdw_color>
#include <tdw_color>
#include <tdw_colorlist>
main()
{
printf("%s", SCOLOR<BLACK>);
printf("%08x", COLOR<BLACK>);
printf("%08x", RGBA(255, 00, 00, 255));
printf("%08x", RGBA2ARGB(RGBA(255, 00, 00, 255)));
}