20.03.2012, 20:32
HI, i can't figure this out, its so lame -.-.
Anyways, i want it to be /id [ID/Part of Name] not just /id [ID].
Here's the code
Anyways, i want it to be /id [ID/Part of Name] not just /id [ID].
Here's the code
PHP код:
CMD:id(playerid, params[])
{
new string[128], giveplayerid;
if(sscanf(params, "d", giveplayerid)) return SendClientMessageEx(playerid, COLOR_WHITE, "USAGE: /id [playerid]");
if(IsPlayerConnected(giveplayerid))
{
format(string, sizeof(string), "(ID: %d) - (Name: %s) - (Level: %d) - (Ping: %d)", giveplayerid, GetPlayerNameEx(giveplayerid), PlayerInfo[giveplayerid][pLevel], GetPlayerPing(giveplayerid));
SendClientMessageEx(playerid, COLOR_WHITE, string);
}
else
{
SendClientMessageEx(playerid, COLOR_GRAD1, "Invalid player specified.");
}
return 1;
}