24.10.2011, 16:02
When I wrote this command, me show just my stats. And the other players do not show.
Код:
dcmd_rank( playerid, params[] )
{
new id;
if (strlen(params))
{
id = strval(params);
if(IsPlayerConnected(id))
{
new str[256];
SendClientMessage(playerid,COLOR_YELLOW,"[FunZoneLT]>> Dabartinis lygis:");
GetPlayerRank(playerid);
format(str,sizeof(str),"[FunZoneLT]>> Nuzudymai: %d Mirtys: %d ",GetPlayerKills(playerid),GetPlayerDeaths(playerid));
SendClientMessage(playerid,0x00FF00AA,str);
}
else
{
SendClientMessage(playerid,0x00FF00AA, "[FunZoneLT]>> Tokio zaidejo nera.");
}
}
else
{
SendClientMessage(playerid,0x00FF00AA, "[FunZoneLT]>> /rank [zaidejoid]");
}
return 1;
}

