[PEDIDO] Cor Piscando
#7

Sу lembrando andmeida10,
quando vocк cria um settimerex com repetitivas chamadas,
o settimer nгo й deletado. assim quando 50 pessoas entrarem, terб 100 settimers ( ou mais ).

aconselho assim:
pawn Код:
#define VERDE 1
#define AZUL 2

forward ChangeColor();
new color[MAX_PLAYERS char];

//em OnPlayerConnect(playerid):
color{playerid} = 0;


// OnGameModeInit
SetTimer("ChangeColor", 1500, true);


//Final do GM, fora de qualquer public:
public ChangeColor()
{

    for(new i, e = GetMaxPlayers(); i != e; ++i)
    {
        if(IsPlayerConnected(i))
        {
            if(color[i] == VERDE) //Setar azul(tem cor verde)
            {
                SetPlayerColor(i, 0x0000FFFF); //seta cor azul
                color{i} = AZUL; //diz que tem cor azul
            }
            if(color[i] == AZUL) //Setar verde(tem cor azul)
            {
                SetPlayerColor(i, 0x00FF00FF); //seta cor verde
                color{i} = VERDE; //diz que tem cor verde
            }
        }
    }
    return 1;
}
Reply


Messages In This Thread
[PEDIDO] Cor Piscando - by FriendrS - 23.02.2012, 22:04
Re: [PEDIDO] Cor Piscando - by aleex995 - 23.02.2012, 22:38
Re: [PEDIDO] Cor Piscando - by Rick_DR - 23.02.2012, 23:23
Re: [PEDIDO] Cor Piscando - by FriendrS - 25.02.2012, 10:39
Re: [PEDIDO] Cor Piscando - by ReDKiiL - 25.02.2012, 11:06
Re: [PEDIDO] Cor Piscando - by andmeida10 - 25.02.2012, 12:03
Re: [PEDIDO] Cor Piscando - by DarkScripter - 25.02.2012, 16:57
Re: [PEDIDO] Cor Piscando - by andmeida10 - 25.02.2012, 18:11

Forum Jump:


Users browsing this thread: 1 Guest(s)