[AJUDA/HELP] Criar comando /procurados | Create command /wanted [Portuguese/English]
#1

Preciso de ajuda para criar um comando para policiais, o comando serviria para mostrar a lista de quem й procurado no server ( ou seja, quem tem Wanted Level ) e tambйm para que quando o policial matar o suspeito ele vб preso.. Alguйm pode me ajudar ? Grato.

---

I need help to create a command to police, the command would serve to show the list of who is wanted in the server (ie who has Wanted Level) and also so that when the police kill suspect arrested him go .. Can anyone help me? Thanks.

PS: Sorry for any mistake, I'm using ****** Translator !
Reply
#2

Depdende de como vocк ta montando seu GM
Usa esse exemplo e tenta pegar o principal do comando.
Se tiver alguma dъvida fala por aqui ou manda pm, esse й o que to usando no meu servidor.

Код:
if(strcmp(cmd, "/procurados", true) == 0)
	{
	    new string2[128];
	    new Procurados[24];
	    if(IsPlayerConnected(playerid))
	   	{
  			
			if(IsACop(playerid) || IsAFreecop(playerid))
			{
				new x;
				SendClientMessage(playerid, COLOR_GREEN, "Atuais Suspeitos Procurados:");
			        for(new i=0; i < MAX_PLAYERS; i++)
				{
					if(IsPlayerConnected(i))
					{
					    if(WantedLevel[i] >= 1 || WantedPoints[i] >= 1)
					    {
							GetPlayerName(i, Procurados, sizeof(Procurados));
							format(string2, sizeof(string2), "|| Nome: %s || Nнvel De Procurado: %d || Pontos De Procurado: %d ||", Procurados,WantedLevel[i], WantedPoints[i]);
							x++;
						}
					}
				}
				if(x == 0)
				{
				    SendClientMessage(playerid, COLOR_YELLOW, "Nгo hб suspeitos sendo procurados.");
				}
				if(x >= 1)
				{
				    SendClientMessage(playerid, COLOR_YELLOW, string2);
				}
			}
			else
			{
			    SendClientMessage(playerid, COLOR_GREY, "   Vocк nгo й um Policial / Polнcia Civil / Exйrcito !");
			}
		}//not connected
		return 1;
	}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)