28.03.2017, 19:21
Olб,
Estou com um problema peguei um sistema vip e jб estou utilizando ele a algum tempo, mas agora notei que quando dou /VIPS aparece todos os jogadres vips e nгo somente os VIP, irei deixar como й esse /vips, espero que consigam me ajudar ?!!
Estou com um problema peguei um sistema vip e jб estou utilizando ele a algum tempo, mas agora notei que quando dou /VIPS aparece todos os jogadres vips e nгo somente os VIP, irei deixar como й esse /vips, espero que consigam me ajudar ?!!
Quote:
CMD:vips(playerid) { new ContarVIPs = 0; new StringCat[1000]; for(new i = 0; i < MAX_PLAYERS; i++) { if(IsPlayerConnected(i)) { format(Str, sizeof(Str), "{00FFFF}%s {FFFFFF}[{00FFFF}%i{FFFFFF}]\n", PlayerName(i), i); strcat(StringCat, Str); ContarVIPs++; } } if(ContarVIPs == 0) ShowPlayerDialog(playerid, 5000, DIALOG_STYLE_MSGBOX, "{FFFFFF}VIPs Online [{FF0000} 0{FFFFFF}]", "{FF0000}Nenhum VIP online!", "Fechar", #); else if(ContarVIPs == 1) ShowPlayerDialog(playerid, 5000, DIALOG_STYLE_MSGBOX, "{FFFFFF}VIP Online [{00BFFF} 1 {FFFFFF}]", StringCat, "Fechar", #); else { format(Str, sizeof(Str), "{FFFFFF}VIPs Online [{00BFFF} %d {FFFFFF}]", ContarVIPs); ShowPlayerDialog(playerid, 5000, DIALOG_STYLE_MSGBOX, Str, StringCat, "Fechar", #); } return 1; } |