2021-02-23, 11:29 PM
Code:
CMD:id(playerid, params[]) {
if (sscanf(params, "u", params[0])) return SendClientMessage(playerid, -1, "{D41818}[COMMAND]{AFAFAF} /id <nick>");
if (!IsPlayerConnected(params[0])) return SendClientMessage(playerid, -1, "{D41818}[ERROR]{AFAFAF} Player not found");
new string[128];
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), "%d - [ID]:%s", params[0], name);
SendClientMessage(playerid, 0x969696FF, string);
return 1;
}
my idea is to make a command so that when you put / id and the name of the player you can receive the ID of the player