SA-MP Forums Archive
[Ajuda] Loose identation - 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] Loose identation (/showthread.php?tid=564746)



Loose identation - FabioGTP - 22.02.2015

Eu sei que й ma identaзгo mais ta tudo identado corretamente atй usei site para identar mais continua dando warning e eu nгo quero usar #pragma tabsize 0
Cуdigo
pawn Код:
public OnPlayerText(playerid, text[])
{
    new string[180];
    new name[MAX_PLAYER_NAME];
    GetPlayerName(playerid,name,sizeof(name));
    if(text[0] == '!')
    {         for(new i=0; i < MAX_PLAYERS; i++)
        {
            if(Player[i][pFaccao] == 1)
            {
                format(string,sizeof(string),"[Chat Terceiro Comando da capital] %s (%d): %s", name,playerid, text[1]);
                if(Player[i][pFaccao] == 1)
                    SendClientMessage(i,COR_AMARELO,string);
            }
            if(Player[i][pFaccao] == 2)
            {
                format(string,sizeof(string),"[Chat Comando Vermelho] %s (%d): %s", name,playerid, text[1]);
                if(Player[i][pFaccao] == 2)
                    SendClientMessage(i,COR_ERRO,string);
            }
        }
        return 0;
    }
    return 1;
}
o warning й no return 0


Re: Loose identation - Lуs - 22.02.2015

Esse cуdigo estб longe de estar identado...


Re: Loose identation - pWesley - 22.02.2015

pawn Код:
public OnPlayerText(playerid, text[]){
    new string[180];
    new name[MAX_PLAYER_NAME];
    GetPlayerName(playerid,name,sizeof(name));
    if(text[0] == '!'){
        for(new i=0; i < MAX_PLAYERS; i++){
        if(Player[i][pFaccao] == 1){
            format(string,sizeof(string),"[Chat Terceiro Comando da capital] %s (%d): %s", name,playerid, text[1]);
            if(Player[i][pFaccao] == 1) {
                    SendClientMessage(i,COR_AMARELO,string);
                    return 1;
            }
            if(Player[i][pFaccao] == 2){
                format(string,sizeof(string),"[Chat Comando Vermelho] %s (%d): %s", name,playerid, text[1]);
                if(Player[i][pFaccao] == 2){
                    SendClientMessage(i,COR_ERRO,string);
                }
            }
        }
    }
    return 1;
}
Tenta isso


Re: Loose identation - Ever_SH - 22.02.2015

pawn Код:
public OnPlayerText(playerid, text[])
{
    new string[180];
    new name[MAX_PLAYER_NAME];
    GetPlayerName(playerid,name,sizeof(name));
    if(text[0] == '!')
    {
                 for(new i=0; i < MAX_PLAYERS; i++)
        {
           
            if(Player[i][pFaccao] == 1)
            {
               
                format(string,sizeof(string),"[Chat Terceiro Comando da capital] %s (%d): %s", name,playerid, text[1]);
                if(Player[i][pFaccao] == 1)
                SendClientMessage(i,COR_AMARELO,string);
            }
            if(Player[i][pFaccao] == 2)
            {
               
                format(string,sizeof(string),"[Chat Comando Vermelho] %s (%d): %s", name,playerid, text[1]);
                if(Player[i][pFaccao] == 2)
                SendClientMessage(i,COR_ERRO,string);
            }
        }
        return 0;
    }
    return 1;
}



Re: Loose identation - Username1234 - 22.02.2015

Esta todo certo o code.


Re: Loose identation - Duk - 22.02.2015

Use a tecla TAB de seu teclado para poder identar corretamente.
Aos poucos vocк vai pegando jeito e seu gamemode irб ficar 100% identado, Vai por min!



Isso й uma identaзгo mais uma уtimizaзгo!

pawn Код:
public OnPlayerText(playerid, text[])
{
    new string[180], name;
    GetPlayerName(playerid,name,sizeof(name));
    if(text[0] == '!')
    {
        for(new i=0; i < MAX_PLAYERS; i++)
        {
            if(Player[i][pFaccao] == 1)
            {
                format(string,sizeof(string),"[Chat Terceiro Comando da capital] %s (%d): %s", name,playerid, text[1]);
                if(Player[i][pFaccao] == 1) return SendClientMessage(i,COR_AMARELO,string);
            }
            else if(Player[i][pFaccao] == 2)
            {
                format(string,sizeof(string),"[Chat Comando Vermelho] %s (%d): %s", name,playerid, text[1]);
                if(Player[i][pFaccao] == 2) return SendClientMessage(i,COR_ERRO,string);
            }
        }
    }
    return true;
}



Re : Loose identation - ThuuGLif3 - 22.02.2015

Use o tabulador!
http://tabulador.medianewsonline.com/

Ele deixa seu cуdigo totalmente identado.

JБ SEM LOOSE:
Код:
public OnPlayerText(playerid, text[])
{
	new string[180];
	new name[MAX_PLAYER_NAME];
	GetPlayerName(playerid,name,sizeof(name));
	if(text[0] == '!')
	{
		         for(new i=0; i < MAX_PLAYERS; i++)
		{
			
			if(Player[i][pFaccao] == 1)
			{
				
				format(string,sizeof(string),"[Chat Terceiro Comando da capital] %s (%d): %s", name,playerid, text[1]);
				if(Player[i][pFaccao] == 1)
				SendClientMessage(i,COR_AMARELO,string);
			}
			if(Player[i][pFaccao] == 2)
			{
				
				format(string,sizeof(string),"[Chat Comando Vermelho] %s (%d): %s", name,playerid, text[1]);
				if(Player[i][pFaccao] == 2)
				SendClientMessage(i,COR_ERRO,string);
			}
		}
		return 0;
	}
	return 1;
}
Abraзo.


Re: Loose identation - Kojak - 23.02.2015

Код:
 public OnPlayerText(playerid, text[])
{
	new string[180];
	new name[MAX_PLAYER_NAME];
	GetPlayerName(playerid,name,sizeof(name));
	if(text[0] == '!')
	{         for(new i=0; i < MAX_PLAYERS; i++)
		{
			if(Player[i][pFaccao] == 1)
			{
				format(string,sizeof(string),"[Chat Terceiro Comando da capital] %s (%d): %s", name,playerid, text[1]);
				if(Player[i][pFaccao] == 1)
					SendClientMessage(i,COR_AMARELO,string);
			}
			if(Player[i][pFaccao] == 2)
			{
				format(string,sizeof(string),"[Chat Comando Vermelho] %s (%d): %s", name,playerid, text[1]);
				if(Player[i][pFaccao] == 2)
					SendClientMessage(i,COR_ERRO,string);
			}
return 0;
		}
	}
	return 1;
}

Tenta isso



Re: Loose identation - ipsLuan - 23.02.2015

Jб resolveu o problema?
Kojak, de todos o seu foi o pior cуdigo, sem identaзгo nenhuma.


Re: Loose identation - Wanderson_SAMP - 23.02.2015

Sу pode ser zoaзгo, pra que esse espaзamento absurdo