SA-MP Forums Archive
[Ajuda] /vips mosrando todos os jogadores do sv - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] /vips mosrando todos os jogadores do sv (/showthread.php?tid=631392)



/vips mosrando todos os jogadores do sv - ThiagoGamemodes - 28.03.2017

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 ?!!

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;
}




Re: /vips mosrando todos os jogadores do sv - iTzMatheus - 28.03.2017

Код:
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++;
Nesse trecho sua verificaзгo й feita unicamente se o jogador estб conectado, se possuir uma variavel na qual indique que o jogador seja vip, basicamente й o que deve ser feito.

Substitua o "IsPlayerVip" pela sua variavel que checa se o jogador й vip ou nгo.

Код:
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) && IsPlayerVip(i))
{
format(Str, sizeof(Str), "{00FFFF}%s {FFFFFF}[{00FFFF}%i{FFFFFF}]\n", PlayerName(i), i);
strcat(StringCat, Str);
ContarVIPs++;



Re: /vips mosrando todos os jogadores do sv - ThiagoGamemodes - 28.03.2017

Sim, em minha gamemode o sistema vip й feito da seguinte forma, IsPlayerVIP, vou fazer isto que vocк falou, obrigado !

+REP!


Re: /vips mosrando todos os jogadores do sv - VinteDois - 29.03.2017

Quote:
Originally Posted by ThiagoGamemodes
Посмотреть сообщение
Sim, em minha gamemode o sistema vip й feito da seguinte forma, IsPlayerVIP, vou fazer isto que vocк falou, obrigado !

+REP!
testa
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;
}