21.11.2018, 18:24
Try this out
If it still doesn't work try out Pawn.CMD
pawn Код:
CMD:me(playerid, params[])
{
if(!LoggedIn[playerid])
{
return SendClientMessage(playerid, -1, "You must be logged in to use this command");
}
if(isnull(params))
{
return SendClientMessage(playerid, COLOR_RED, "USE:: /me [action]");
}
else
{
new string[128];
format(string, sizeof(string), "* %s %s", NameRP(playerid), params);
SendLocalMessage(playerid, COLOR_EMOTE, string);
}
return 1;
}