29.03.2017, 17:09
Quote:
Sim, em minha gamemode o sistema vip й feito da seguinte forma, IsPlayerVIP, vou fazer isto que vocк falou, obrigado !
+REP! |
Quote:
Код:
if(!strcmp(cmdtext, "/VIPs", true)) { SCM(playerid, COR_BARRAS, "» Todos os VIP's online:"); new count=0; for(new i=0; i<MAX_PLAYERS; i++) { if(Player[i][pLogged] == true) { if(Player[i][ContarVIPs] == 1) { if(IsPlayerConnected(i)) { new str[256]; new pname[24]; GetPlayerName(i, pname, 24); format(str, 256, "{FFFFFF}VIPs Online [{00BFFF} %s {FFFFFF}]", pname"); SCM(playerid, 0xE3E3E3FF, str); count++; } } } } if(count == 0) { SCM(playerid, 0xD8D8D8FF, "Nгo tem nenhum VIP online agora!"); } return 1; } |