[Ajuda] varios erros ao compilar
#5

Quote:
Originally Posted by Electrifying
Посмотреть сообщение
Crie a string gstring, new gstring[50];

Amigo, vocк precisa ler os prуprios erros antes de sair postando, se vocк tivesse feito isso jб teria arrumado


fatal error 107: too many error messages on one line < Isso aqui й consequкncia de vбrios erros na mesma linha

error 029: invalid expression, assumed zero < Aqui estб dizendo que a expressгo й invalida porque vocк nгo criou gstring.
"Sнmbolo indefinido "gstring"" significa que vocк nгo definiu "gstring"

warning 217: loose indentation < Aqui й problema de indentaзгo

error 033: array must be indexed < Aqui fala que vocк deve aderir um valor а array

Uma rбpida lida no seu cуdigo e vocк consegue identificar todos os erros, й sу ler

https://sampforum.blast.hk/showthread.php?tid=252966 Aqui tem os erros mais comuns.
Код:
C:\Users\Lucas Alves\Desktop\Brasil MegaSamp\gamemodes\BMS.pwn(302) : error 033: array must be indexed (variable "Textdraw2")
C:\Users\Lucas Alves\Desktop\Brasil MegaSamp\gamemodes\BMS.pwn(317) : error 033: array must be indexed (variable "Textdraw4")
C:\Users\Lucas Alves\Desktop\Brasil MegaSamp\gamemodes\BMS.pwn(332) : error 033: array must be indexed (variable "Textdraw4")
deu erro de qualquer jeito

Код:
public OnPlayerClickTextDraw(playerid, Text:clickedid)

    if(_:clickedid != INVALID_TEXT_DRAW)
    {
      if(clickedid == Textdraw2)
      {
			  new plname[MAX_PLAYER_NAME];
			  GetPlayerName(playerid, plname, sizeof(plname));
              format(gstring,sizeof(gstring), "Contas/%s.ini", plname);
              if(DOF2_FileExists(gstring))
              {
                 // SEU SISTEMA DE LOGIN
                        }
                        else
                        {
              ShowPlayerDialog(playerid, 9632, DIALOG_STYLE_MSGBOX, "ERRO", "{FFFFFF}Vocк nгo tem uma conta!", "Ok", "");
              }
              return 1;
      }
      if(clickedid == Textdraw4)
               {
              new plname[MAX_PLAYER_NAME];
			  GetPlayerName(playerid, plname, sizeof(plname));
              format(gstring,sizeof(gstring), "Contas/%s.ini", plname);
              if(DOF2_FileExists(gstring))
              {
                     ShowPlayerDialog(playerid, 9632, DIALOG_STYLE_MSGBOX, "ERRO", "{FFFFFF}Vocк tem uma conta, logue-se!", "Ok", "");
              }
              else
              {
                 // SEU SISTEMA DE LOGIN AQUI
                        }
              return 1;
      }
      if(clickedid == Textdraw4)
      {
                SendClientMessage(playerid, 0xFFFFFFAA, "Vocк foi kickado por nгo se registrar/logar!");
      Kick(playerid);
      }
      return 1;
   }
        return 1;
}
Reply


Messages In This Thread
varios erros ao compilar - by LeonardoAlberto - 20.11.2018, 17:05
Re: varios erros ao compilar - by ipsLuan - 20.11.2018, 17:11
Re: varios erros ao compilar - by LeonardoAlberto - 20.11.2018, 17:27
Re: varios erros ao compilar - by Electrifying - 20.11.2018, 17:54
Re: varios erros ao compilar - by LeonardoAlberto - 20.11.2018, 18:44
Re: varios erros ao compilar - by Electrifying - 20.11.2018, 18:54
Re: varios erros ao compilar - by Electrifying - 20.11.2018, 20:20
Re: varios erros ao compilar - by LeonardoAlberto - 20.11.2018, 20:52

Forum Jump:


Users browsing this thread: 1 Guest(s)