01.03.2009, 06:01
Little bored tonight but this command is basic logic just looping to get all players current level.
Once you determined it you could probably just format it all into a nice looking string.
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if(GetPlayerWantedLevel(i) >= 1)
{
// This player is wanted
}
}

