22.03.2012, 16:34
Please create me agein one command for /asay but not for /asay now for /sayme (is to /asay but for work) Colour to pink ! For Admin level admin ( all admins)
CMD:asay(playerid, params[])
{
if(PlayerInfo[playerid][pAdmin] >= 1)
{
if(!isnull(params))
{
new string[128];
format(string, sizeof(string),"Admin says: %s", params);
SendClientMessageToAll(-1, string);
}
else SendClientMessage(playerid, -1,"USAGE: /asay [message]");
}
else SendClientMessage(playerid, -1,"You must be admin.");
return 1;
}