27.09.2010, 09:56
Do you guys know how to make a /colour command , to change your name colour?
if( !strcmp(cmdtext,"/color",true ))
{
//Stuff !!!
return 1;
}
if(!strcmp(cmdtext, "/Red", true))
{
SetPlayerColor(playerid, 0xFF0000FF);
return 1;
}
if(!strcmp(cmdtext, "/Grey", true))
{
SetPlayerColor(playerid, 0xAFAFAFAA);
return 1;
}