[Ajuda] Tags em cima da cabeзa!
#1

Olб estou criando tags em cima da cabeзa de um "adm". Porem quando vou copilar da erro em outros lugares do gm,eu sei que й o forward que estou criando pois quando eu os removo ele copila dboa.

ERROS:

PHP код:
C:\Users\Pedro Tramontina\Desktop\Projetos 2018\filterscripts\ladmin4v2.pwn(1445) : error 021symbol already defined"SetTimer"
C:\Users\Pedro Tramontina\Desktop\Projetos 2018\filterscripts\ladmin4v2.pwn(1497) : error 017undefined symbol "AdminSkin2"
C:\Users\Pedro Tramontina\Desktop\Projetos 2018\filterscripts\ladmin4v2.pwn(3010) : error 017undefined symbol "AdminSkin2"
C:\Users\Pedro Tramontina\Desktop\Projetos 2018\filterscripts\ladmin4v2.pwn(8277) : warning 235: public function lacks forward declaration (symbol "ProcessarCadeiaSegundo")
C:\Users\Pedro Tramontina\Desktop\Projetos 2018\filterscripts\ladmin4v2.pwn(8996) : error 017undefined symbol "AdminSkin2"
Pawn compiler 3.2.3664              Copyright (c1997-2006ITB CompuPhase
4 Errors

Meu chatbubble

PHP код:
forward AtualizarChatBubble();
public 
AtualizarChatBubble()
{
    for(new 
x=0MAX_PLAYERSx++)
    {
      if(
PlayerInfo[x][Level] >= 5)
        {
      
SetPlayerChatBubble(x"Desenvolvedor(a)"0x328E0AAA100.0100000);
      }
       if(
PlayerInfo[x][Level] >= 4)
      {
      
SetPlayerChatBubble(x"Administrador(a)"0x008bceAA100.0100000);
      }
       if(
PlayerInfo[x][Level] >= 3)
      {
      
SetPlayerChatBubble(x"Moderador(a)"0xFF8C00AA100.0100000);
      }
       if(
PlayerInfo[x][Level] >= 2)
      {
      
SetPlayerChatBubble(x"Sub-Administrador(a)"0x008bceAA100.0100000);
      }
       if(
PlayerInfo[x][Level] >= 1)
      {
      
SetPlayerChatBubble(x"Ajudante"0xFFFF00AA100.0100000);
      }
}
return 
1;
}
SetTimer("AtualizarChatBubble"1000true); 
Alguem poderia em ajudar? grato!
Reply
#2

Код:
error 021: symbol already defined: "SetTimer"
Jб foi definido.
Код:
error 017: undefined symbol "AdminSkin2"
Falta a variбvel.
Код:
warning 235: public function lacks forward declaration (symbol "ProcessarCadeiaSegundo")
Falta o forward.
Reply
#3

Quote:
Originally Posted by ipsLuan
Посмотреть сообщение
Код:
error 021: symbol already defined: "SetTimer"
Jб foi definido.
Код:
error 017: undefined symbol "AdminSkin2"
Falta a variбvel.
Код:
warning 235: public function lacks forward declaration (symbol "ProcessarCadeiaSegundo")
Falta o forward.
Se eu remover esse chat bubble que fiz o gm vai copilar normal,pq quando crio o esse chat ele da erros em outros lugares do gm?
Reply
#4

Quote:
Originally Posted by CSSDean
Посмотреть сообщение
Olб estou criando tags em cima da cabeзa de um "adm". Porem quando vou copilar da erro em outros lugares do gm,eu sei que й o forward que estou criando pois quando eu os removo ele copila dboa.

ERROS:

PHP код:
C:\Users\Pedro Tramontina\Desktop\Projetos 2018\filterscripts\ladmin4v2.pwn(1445) : error 021symbol already defined"SetTimer"
C:\Users\Pedro Tramontina\Desktop\Projetos 2018\filterscripts\ladmin4v2.pwn(1497) : error 017undefined symbol "AdminSkin2"
C:\Users\Pedro Tramontina\Desktop\Projetos 2018\filterscripts\ladmin4v2.pwn(3010) : error 017undefined symbol "AdminSkin2"
C:\Users\Pedro Tramontina\Desktop\Projetos 2018\filterscripts\ladmin4v2.pwn(8277) : warning 235: public function lacks forward declaration (symbol "ProcessarCadeiaSegundo")
C:\Users\Pedro Tramontina\Desktop\Projetos 2018\filterscripts\ladmin4v2.pwn(8996) : error 017undefined symbol "AdminSkin2"
Pawn compiler 3.2.3664              Copyright (c1997-2006ITB CompuPhase
4 Errors

Meu chatbubble

PHP код:
forward AtualizarChatBubble();
public 
AtualizarChatBubble()
{
    for(new 
x=0MAX_PLAYERSx++)
    {
      if(
PlayerInfo[x][Level] >= 5)
        {
      
SetPlayerChatBubble(x"Desenvolvedor(a)"0x328E0AAA100.0100000);
      }
       if(
PlayerInfo[x][Level] >= 4)
      {
      
SetPlayerChatBubble(x"Administrador(a)"0x008bceAA100.0100000);
      }
       if(
PlayerInfo[x][Level] >= 3)
      {
      
SetPlayerChatBubble(x"Moderador(a)"0xFF8C00AA100.0100000);
      }
       if(
PlayerInfo[x][Level] >= 2)
      {
      
SetPlayerChatBubble(x"Sub-Administrador(a)"0x008bceAA100.0100000);
      }
       if(
PlayerInfo[x][Level] >= 1)
      {
      
SetPlayerChatBubble(x"Ajudante"0xFFFF00AA100.0100000);
      }
}
return 
1;
}
SetTimer("AtualizarChatBubble"1000true); 
Alguem poderia em ajudar? grato!
Seu ChatBubble й muinto parecido com Um que eu ja vi Mais vamos la, eu usei um ingual o seu olha, e deu certo de 1

Код:
 SetTimer("AtualizarChatBubble", 1000, true); //No Topo Junto com os SetTimer

forward AtualizarChatBubble();
public AtualizarChatBubble()
{
    for(new x=0; x < MAX_PLAYERS; x++)
    {
      if(pAdmin[x] == 5)
        {
      SetPlayerChatBubble(x, "Desenvolvedor(a)", 0x328E0AAA, 100.0, 100000);
      }
            
      if(pAdmin[x] == 4)
      {
      SetPlayerChatBubble(x, "Administrador(a)", 0x008bceAA, 100.0, 100000);
      }
      
      if(pAdmin[x] == 3)
      {
      SetPlayerChatBubble(x, "Moderador(a)", 0xFF8C00AA, 100.0, 100000);
      }
      if(pAdmin[x] == 2)
      {
      SetPlayerChatBubble(x, "Admin-Geral", 0xc32407AA, 100.0, 100000);
      }
      if(pAdmin[x] == 1)
      {
      SetPlayerChatBubble(x, "Ajudante", 0xFFFF00AA, 100.0, 100000);
      }

}
}
//No Final da Gamemode
Espero ter Ajudado, comente se deu certo, Obs: No pAdmin[x] ==2? Acho que й sua variavel adm, ent vai testando ai
Reply
#5

Quote:
Originally Posted by uliano
Посмотреть сообщение
Seu ChatBubble й muinto parecido com Um que eu ja vi Mais vamos la, eu usei um ingual o seu olha, e deu certo de 1

Код:
 SetTimer("AtualizarChatBubble", 1000, true); //No Topo Junto com os SetTimer

forward AtualizarChatBubble();
public AtualizarChatBubble()
{
    for(new x=0; x < MAX_PLAYERS; x++)
    {
      if(pAdmin[x] == 5)
        {
      SetPlayerChatBubble(x, "Desenvolvedor(a)", 0x328E0AAA, 100.0, 100000);
      }
            
      if(pAdmin[x] == 4)
      {
      SetPlayerChatBubble(x, "Administrador(a)", 0x008bceAA, 100.0, 100000);
      }
      
      if(pAdmin[x] == 3)
      {
      SetPlayerChatBubble(x, "Moderador(a)", 0xFF8C00AA, 100.0, 100000);
      }
      if(pAdmin[x] == 2)
      {
      SetPlayerChatBubble(x, "Admin-Geral", 0xc32407AA, 100.0, 100000);
      }
      if(pAdmin[x] == 1)
      {
      SetPlayerChatBubble(x, "Ajudante", 0xFFFF00AA, 100.0, 100000);
      }

}
}
//No Final da Gamemode
Espero ter Ajudado, comente se deu certo, Obs: No pAdmin[x] ==2? Acho que й sua variavel adm, ent vai testando ai
Muito obrigado man,tipo atй copilou,porem na hora de testar apenas o level 1 (ajudante) que pego a tag,quando coloco pra ser level 2 por exemplo,ele ainda continua "ajudante"


PHP код:
forward AtualizarChatBubble();
public 
AtualizarChatBubble()
{
    for(new 
x=0MAX_PLAYERSx++)
    {
       if(
PlayerInfo[x][Level] >= 5)
        {
      
SetPlayerChatBubble(x"Desenvolvedor(a)"0x328E0AAA100.0100000);
      }
       if(
PlayerInfo[x][Level] >= 4)
      {
      
SetPlayerChatBubble(x"Administrador(a)"0x008bceAA100.0100000);
      }
       if(
PlayerInfo[x][Level] >= 3)
      {
      
SetPlayerChatBubble(x"Moderador(a)"0xFF8C00AA100.0100000);
      }
       if(
PlayerInfo[x][Level] >= 2)
      {
      
SetPlayerChatBubble(x"Admin-Geral"0xc32407AA100.0100000);
      }
       if(
PlayerInfo[x][Level] >= 1)
      {
      
SetPlayerChatBubble(x"Ajudante"0xFFFF00AA100.0100000);
      }
}

Reply
#6

Quote:
Originally Posted by CSSDean
Посмотреть сообщение
Muito obrigado man,tipo atй copilou,porem na hora de testar apenas o level 1 (ajudante) que pego a tag,quando coloco pra ser level 2 por exemplo,ele ainda continua "ajudante"


PHP код:
forward AtualizarChatBubble();
public 
AtualizarChatBubble()
{
    for(new 
x=0MAX_PLAYERSx++)
    {
       if(
PlayerInfo[x][Level] >= 5)
        {
      
SetPlayerChatBubble(x"Desenvolvedor(a)"0x328E0AAA100.0100000);
      }
       if(
PlayerInfo[x][Level] >= 4)
      {
      
SetPlayerChatBubble(x"Administrador(a)"0x008bceAA100.0100000);
      }
       if(
PlayerInfo[x][Level] >= 3)
      {
      
SetPlayerChatBubble(x"Moderador(a)"0xFF8C00AA100.0100000);
      }
       if(
PlayerInfo[x][Level] >= 2)
      {
      
SetPlayerChatBubble(x"Admin-Geral"0xc32407AA100.0100000);
      }
       if(
PlayerInfo[x][Level] >= 1)
      {
      
SetPlayerChatBubble(x"Ajudante"0xFFFF00AA100.0100000);
      }
}

Tente
PHP код:
forward AtualizarChatBubble();
public 
AtualizarChatBubble()
{
  for(new 
x=0<= GetPlayerPoolSize(); x++) {
    if(!
IsPlayerConnected(x)) continue;
    switch(
PlayerInfo[x][Level]) {
      case 
5SetPlayerChatBubble(x"Desenvolvedor(a)"0x328E0AAA100.02000);
      case 
4SetPlayerChatBubble(x"Administrador(a)"0x008bceAA100.02000);
      case 
3SetPlayerChatBubble(x"Moderador(a)"0xFF8C00AA100.02000);
      case 
2SetPlayerChatBubble(x"Admin-Geral"0xc32407AA100.02000);
      case 
1SetPlayerChatBubble(x"Ajudante"0xFFFF00AA100.02000);
    }
  }

Reply
#7

Quote:
Originally Posted by Locky_
Посмотреть сообщение
Tente
PHP код:
forward AtualizarChatBubble();
public 
AtualizarChatBubble()
{
  for(new 
x=0<= GetPlayerPoolSize(); x++) {
    if(!
IsPlayerConnected(x)) continue;
    switch(
PlayerInfo[x][Level]) {
      case 
5SetPlayerChatBubble(x"Desenvolvedor(a)"0x328E0AAA100.02000);
      case 
4SetPlayerChatBubble(x"Administrador(a)"0x008bceAA100.02000);
      case 
3SetPlayerChatBubble(x"Moderador(a)"0xFF8C00AA100.02000);
      case 
2SetPlayerChatBubble(x"Admin-Geral"0xc32407AA100.02000);
      case 
1SetPlayerChatBubble(x"Ajudante"0xFFFF00AA100.02000);
    }
  }

da esse erro man

PHP код:
C:\Users\Pedro Tramontina\Desktop\Projetos 2018\filterscripts\ladmin4v2.pwn(8248) : warning 235: public function lacks forward declaration (symbol "ProcessarCadeiaSegundo")
C:\Users\Pedro Tramontina\Desktop\Projetos 2018\filterscripts\ladmin4v2.pwn(9508) : error 017undefined symbol "GetPlayerPoolSize"
Pawn compiler 3.2.3664              Copyright (c1997-2006ITB CompuPhase
1 Error

Reply
#8

Quote:
Originally Posted by CSSDean
Посмотреть сообщение
da esse erro man

PHP код:
C:\Users\Pedro Tramontina\Desktop\Projetos 2018\filterscripts\ladmin4v2.pwn(8248) : warning 235: public function lacks forward declaration (symbol "ProcessarCadeiaSegundo")
C:\Users\Pedro Tramontina\Desktop\Projetos 2018\filterscripts\ladmin4v2.pwn(9508) : error 017undefined symbol "GetPlayerPoolSize"
Pawn compiler 3.2.3664              Copyright (c1997-2006ITB CompuPhase
1 Error

Vocк estб com includes desatualizadas.

PHP код:
forward AtualizarChatBubble(); 
public 
AtualizarChatBubble() 

  for(new 
x=0GetMaxPlayers(); x++) { 
    if(!
IsPlayerConnected(x)) continue; 
    switch(
PlayerInfo[x][Level]) { 
      case 
5SetPlayerChatBubble(x"Desenvolvedor(a)"0x328E0AAA100.02000); 
      case 
4SetPlayerChatBubble(x"Administrador(a)"0x008bceAA100.02000); 
      case 
3SetPlayerChatBubble(x"Moderador(a)"0xFF8C00AA100.02000); 
      case 
2SetPlayerChatBubble(x"Admin-Geral"0xc32407AA100.02000); 
      case 
1SetPlayerChatBubble(x"Ajudante"0xFFFF00AA100.02000); 
    } 
  } 

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)