09.12.2018, 01:37
Comandos utilizados com o processador ZCMD nгo precisa ficar em nenhuma callback.
PHP код:
#include zcmd
#include sscanf2
new texto;
new nome[MAX_PLAYER_NAME];
new Str[128];
new id;
CMD:mp(playerid, params[])
{
if(sscanf(params, "us",id,texto)) return SendClientMessage(playerid,-1,"Use: /mp [id] [texto]");
if(IsPlayerConnected(id)) return SendClientMessage(playerid, -1, "Este jogador nгo estб conectado");
GetPlayerName(playerid,nome,sizeof(nome));
format(Str, sizeof(Str), "Mesangem Privada de %s: %s",nome,texto);
SendClientMessage(id,-1,Str);
return true;
}