Köszi a támogatást! Egyébként nyisd meg pawnoval a vip.pwn fájlt, majd másold be ezt a kódot:
[pawn]CMD:vips(playerid, params[ ])
{
SendClientMessage(playerid, COLOR_WHITE, \"Online VIP tagok:\");
for(new i;i<MAX_PLAYERS;i++)
{
if(gTeam == TEAM_VIP)
{
new pName[200];
new string[200];
GetPlayerName(i, pName, sizeof(pName));
format(string, sizeof(string), \"%s\", pName);
SendClientMessage(playerid, COLOR_YELLOW, string);
}
}
return 1;
}[/pawn]