17.06.2011, 15:22
pawn Код:
if (strcmp("/cvs", cmdtext, true) == 0)
{
for(new id = 0; id < MAX_PLAYERS; ++id) {
SendClientMessage(id, 0xFFFFFFAA, "CV's Online:");
if(levelcv[id] >= 1) {
new Nome[24];
GetPlayerName(id, Nome, sizeof(Nome));
format(string, sizeof(string), "CV: %s",Nome);
SendClientMessage(id,0xFF0000B9,string);
}
}
return true;
}