20.12.2013, 15:06
I've created this command for debug:
That is working correctly.
PHP код:
CMD:fcheckcolor(playerid, params[])
{
new family;
if(sscanf(params, "i", family))
{
SendClientMessage(playerid, COLOR_GREY, "/fcolor [familyid]");
return 1;
}
format(string, sizeof(string), "Family %d's color is ID {%s}%s", family, FamilyInfo[family][fColor], FamilyInfo[family][fColor]);
SendClientMessage(playerid, COLOR_WHITE, string);
return 1;
}