[ajuda] GangZone
#1

Eae galera blz..
Me ajudem pls '-' Tipo coloquei sistema de gz no meu gm mais daew na hora de copilar aparece esse erros:

(13) : error 020: invalid symbol name ""
(14) : error 020: invalid symbol name ""
(14) : error 021: symbol already defined: ""
(1082) : error 033: array must be indexed (variable "gTeam")
(1087) : error 033: array must be indexed (variable "gTeam")
(1095) : error 033: array must be indexed (variable "gTeam")
(1100) : error 033: array must be indexed (variable "gTeam")
(1793) : error 021: symbol already defined: "GangZoneShowForPlayer"
(1897) : error 010: invalid function or declaration
(2059) : warning 203: symbol is never used: ""

Linhas com erros:

Linhas 13 e 14:
Код:
linha 13 -> new Bandidos;
linha 14 -> new Policia;
Linhas 1082 a 1100:
Код:
if (strcmp("/dominar", cmdtext, true, 10) == 0)
    {
	if(IsPlayerInPlace(playerid,2239.024,-1721.339, 2512.828, -1638.437))
	{
linha 1082 -> if(gTeam == Policia)
	{
	GangZoneFlashForAll(Bandidos,COR_POLICIA);
	SetTimer("DominarPoliciaBandidos",60000,false);
	}
linha 1807 ->else if(gTeam == Bandidos)
	{
	GangZoneFlashForAll(Bandidos,COR_BANDIDOS);
	SetTimer("DominarBandidosBandidos",60000,false);
	   }
	}
	else if(IsPlayerInPlace(playerid,2282.1401,2425.7576,3.4692,357.7160))
	 {
linha 1095 ->  if(gTeam == Policia)
	  {
	  GangZoneFlashForAll(Bandidos,COR_POLICIA);
	    SetTimer("DominarPoliciaPolicia",60000,false);
		}
linha 1100 ->  else if(gTeam == Bandidos)
		 {
		 GangZoneFlashForAll(Bandidos,COR_BANDIDOS);
		  SetTimer("DominarBandidosPolicia",60000,false);
		   }
		    }
			return 1;
			}
Linha (1793):
Код:
 GangZoneShowForPlayer(playerid, Bandidos, COR_BANDIDO);
	  GangZoneShowForPlayer(playerid, Policia, COR_POLICIA);
linhas 1897:
Код:
linha 1897 ->Bandidos = GangZoneCreate(1283.7197,-2061.5576,1105.7473,-1995.7424);
linha 1898 ->Policia = GangZoneCreate(1283.7197,-2061.5576,1105.7473,-1995.7424);
Agradeзo a quem me ajuda.
(me ajudem por favor )
att.
Reply
#2

pawn Код:
#define PlayerPolicial 191
#define PlayerBandido 171
new gBandidos, gPolicia;
new gTeam[MAX_PLAYERS];

onplayerconnect(playerid)
{
gTeam[playerid] = 0;
}
ongamemodeint()
{
gBandidos = GangZoneCreate(1283.7197,-2061.5576,1105.7473,-1995.7424);
gPolicia = GangZoneCreate(1283.7197,-2061.5576,1105.7473,-1995.7424);
}
/*
* :P
*/

if(gTeam[playerid] == PlayerPolicial)
{
GangZoneShowForPlayer(playerid, gBandidos, COR_BANDIDO);
}
else if(gTeam[playerid] == PlayerBandido)
{
GangZoneShowForPlayer(playerid, gPolicia, COR_POLICIA);
}

onplayercommandtext(){

if (strcmp("/polico", cmdtext, true, 10) == 0)
{
gTeam[playerid] = PlayerPolicial;
//vc й um policial a partir desse momento.
return 1;
}
if (strcmp("/vagabundo", cmdtext, true, 10) == 0)
{
gTeam[playerid] = PlayerBandido;
//vc й um Bandido a partir desse momento.
return 1;
}





if (strcmp("/dominar", cmdtext, true, 10) == 0)
    {
    if(IsPlayerInPlace(playerid,2239.024,-1721.339, 2512.828, -1638.437))
    {
linha 1082 -> if(gTeam[playerid] == PlayerPolicial)
    {
    GangZoneFlashForAll(gBandidos,COR_POLICIA);
    SetTimer("DominarPoliciaBandidos",60000,false);
    }
linha 1807 ->else if(gTeam[playerid] == PlayerBandido)
    {
    GangZoneFlashForAll(gBandidos,COR_BANDIDOS);
    SetTimer("DominarBandidosBandidos",60000,false);
       }
    }
    else if(IsPlayerInPlace(playerid,2282.1401,2425.7576,3.4692,357.7160))
     {
linha 1095 ->  if(gTeam[playerid] == PlayerPolicial)
      {
      GangZoneFlashForAll(gBandidos,COR_POLICIA);
        SetTimer("DominarPoliciaPolicia",60000,false);
        }
linha 1100 ->  else if(gTeam[playerid] == PlayerBandido)
         {
         GangZoneFlashForAll(gBandidos,COR_BANDIDOS);
          SetTimer("DominarBandidosPolicia",60000,false);
           }
            }
            return 1;
            }

}
Reply
#3

Ae agora apareceu esses erros:

(1795) : error 010: invalid function or declaration
(1799) : error 010: invalid function or declaration

Linhas 1795 б 1799:

Код:
public OnPlayerSpawn(playerid)

 if(gTeam[playerid] == Bandidos )
{
SetPlayerColor(playerid, COLOR_BLACK);
   SetPlayerPos(playerid,1675.4425,-2120.3372,13.5469);
   }
  else if(gTeam[playerid] == Policia )
   {
SetPlayerColor(playerid, COLOR_BLUE);
      SetPlayerPos(playerid,1580.3890,-1636.2451,13.5588);

	  }
	  
linha 1795 ->	  if(gTeam[playerid] == Policial)
	  {
	  GangZoneShowForPlayer(playerid, Bandidos, COR_BANDIDO);
	  }
Linha 1799 -> 	  else if(gTeam[playerid] == Bandido)
	  {
	  GangZoneShowForPlayer(playerid, Policia, COR_POLICIA);
	  }
@ Edit
Erro da linha 1906 Retirado!
Reply
#4

Preste mais atencгo no cуdigo que lhe enviei nгo hб erros.
Obs: Apenas lhe dei a base.
Reply
#5

Quote:
Originally Posted by vinewood
Посмотреть сообщение
Preste mais atencгo no cуdigo que lhe enviei nгo hб erros.
Obs: Apenas lhe dei a base.
Mano aqueles gbandidos, gPolicia, se eu deixase o "g" ia aparecer 29 erros substitui tudo porg "g" para ver se saia os erros mais daew nгo saiu, daew eu modifiquei algumas coisas e apareceu esses 3 erros. me ajuda ae por favor '-'
Reply
#6

pawn Код:
{
Bandidos = GangZoneCreate(1283.7197,-2061.5576,1105.7473,-1995.7424);
Policia = GangZoneCreate(1283.7197,-2061.5576,1105.7473,-1995.7424);
} // 1906

Код:
1795) : error 010: invalid function or declaration
(1799) : error 010: invalid function or declaration
Acho que vc nao definiu algo.
Reply
#7

Erro da linha 1795 e 1799 ainda continua
agora sу tem 2 erros. ajudem..
Reply
#8

pawn Код:
public OnPlayerSpawn(playerid)

  {
 if(gTeam[playerid] == Bandidos )
{
SetPlayerColor(playerid, COLOR_BLACK);
   SetPlayerPos(playerid,1675.4425,-2120.3372,13.5469);
   }
  else if(gTeam[playerid] == Policia )
   {
SetPlayerColor(playerid, COLOR_BLUE);
      SetPlayerPos(playerid,1580.3890,-1636.2451,13.5588);
}
       
          if(gTeam[playerid] == Policial)
      {
      GangZoneShowForPlayer(playerid, Bandidos, COR_BANDIDO);
      }
      else if(gTeam[playerid] == Bandido)
      {
      GangZoneShowForPlayer(playerid, Policia, COR_POLICIA);
      }
return 1;
}
Isso de invalid function or declaration й tipo assim:

pawn Код:
public On(playerid)
{
     SendClientMessage(playerid, azul, "mensagem");
} // Erro

return 1;
}
Reply
#9

Agora apareceu 5 erros:

(1797) : error 021: symbol already defined: "GangZoneShowForPlayer"
(1803) : error 035: argument type mismatch (argument 2)
(1805) : error 010: invalid function or declaration

Linhas 1797:
Код:
public OnPlayerSpawn(playerid)

if(gTeam[playerid] == Bandidos )
{
SetPlayerColor(playerid, COLOR_BLACK);
   SetPlayerPos(playerid,1675.4425,-2120.3372,13.5469);
   }
   else if(gTeam[playerid] == Policia )
   {
SetPlayerColor(playerid, COLOR_BLUE);
      SetPlayerPos(playerid,1580.3890,-1636.2451,13.5588);

	  }
	  
Linha 1797 -> GangZoneShowForPlayer(playerid, Bandidos, COR_BANDIDOS);
	  GangZoneShowForPlayer(playerid, Policia, COR_POLICIA);
Linhas 1803 a 1805:
Код:
	  public On(playerid)
	 
	  {
Linha 1803 -> SendClientMessage(playerid, "mensagem");
	  } // Erro
Linha 1805 ->	  return 1
	  )
Mr ajudem por favor '-' jб tentei fazer tudo que vocкs mandaram ate agr '-'
Reply
#10

cari mais facil q peida:
pawn Код:
public On(playerid)
     
      {
 SendClientMessage(playerid,COLOR_GREEN,"PEIDEI");
      }
      return 1;
      }
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)