[Ajuda] Bug do TextDraw
#4

Tem um tutorial criado pelo Paulor que ensina vбrias funзхes, й уtimo para quem й iniciante.
https://sampforum.blast.hk/showthread.php?tid=428964

Tente otimizar mais esse cуdigo. Como esse exemplo abaixo:

PHP код:
new TextLogin[20]; //Cria a variбvel com 20 cйlulas de 0 а 19
public OnGameModeInit()
{
    
Login[0] = TextDrawCreate(xytext[]);
    
//funзхes da text..
    
Login[1] = TextDrawCreate(xytext[]);
    
//funзхes da text..
    
Login[2] = TextDrawCreate(xytext[]);
    
//funзхes da text..
    //E assim por diante
    
return 1;
}
public 
OnPlayerRequestClass(playeridclassid)
{
    
//Realizamos um loop em todas as cйlulas da variбvel
    
for(new i!= 20i++) //Pode usar sizeof(Login) ou a quantidade de cйlulas (20)
    
{
        
//Escondemos todas as textdraw quando ele clicar em spawn
        
TextDrawHideForPlayer(playeridLogin[i]);
    }
    return 
1;
}
public 
OnPlayerConnect(playerid)
{
    
//Realizamos um loop em todas as cйlulas da variбvel
    
for(new i!= 20i++) //Pode usar sizeof(Login) ou a quantidade de cйlulas (20)
    
{
        
//Mostramos todas as textdraw
        
TextDrawShowForPlayer(playeridLogin[i]);
    }
    return 
1;

Somente isso, nгo precisa esconder as textdraw na public OnPlayerSpawn.
Reply


Messages In This Thread
Bug do TextDraw - by Knoow - 21.12.2015, 20:06
Re: Bug do TextDraw - by EditPawn - 21.12.2015, 21:12
Re: Bug do TextDraw - by Knoow - 21.12.2015, 21:23
Re: Bug do TextDraw - by EditPawn - 21.12.2015, 21:40
Re: Bug do TextDraw - by Knoow - 21.12.2015, 22:53
Re: Bug do TextDraw - by arakuta - 21.12.2015, 23:02
Re: Bug do TextDraw - by Knoow - 21.12.2015, 23:16
Re: Bug do TextDraw - by [Pro]Falcon - 22.12.2015, 14:33

Forum Jump:


Users browsing this thread: 1 Guest(s)