#define MY_COLOR " 0xFFFFFFFF "
#include <a_samp>
#if defined FILTERSCRIPT
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/mycolor", cmdtext, true, 10) == 0)
{
SendClientMessage(playerid, MY_COLOR," Hi , this is my color ");
return 1;
}
return 0;
}