[AJUDA] Nome, texto a distancia
#3

Tinha feito aqui de hб muito tempo, 2 versхes...

Versгo 1:
pawn Код:
Detector(Float: radi, playerid, string[], color)
{
    if(!IsPlayerConnected(playerid))
        return false;
 
    static Pos[3];
    GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
 
    for(new i; i < GetMaxPlayers(); ++i)
    {
        if(IsPlayerConnected(i))
        {
            if(IsPlayerInRangeOfPoint(i, radi, Pos[0], Pos[1], Pos[2]))
            {
                SendClientMessage(i, color1, string);
                continue;
            }
            if(IsPlayerInRangeOfPoint(i, radi*2, Pos[0], Pos[1], Pos[2]))
            {
                SendClientMessage(i, color2, string);
                continue;
            }
            if(IsPlayerInRangeOfPoint(i, radi*3, Pos[0], Pos[1], Pos[2]))
            {
                SendClientMessage(i, color3, string);
            }
        }
    }
    return true;
}
Versгo 2:
pawn Код:
Detector(Float: radi, playerid, string[], color)
{
    if(!IsPlayerConnected(playerid))
        return false;
 
    static Pos[3];
    GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
 
    for(new i; i < GetMaxPlayers(); i++)
    {
        if(!IsPlayerInRangeOfPoint(i, radi, Pos[0], Pos[1], Pos[2])) continue;
 
        SendClientMessage(i, color, string);
    }
    return true;
}
Reply


Messages In This Thread
[AJUDA] Nome, texto a distancia - by Chis - 06.02.2012, 19:04
Re: [AJUDA] Nome, texto a distancia - by steki. - 06.02.2012, 19:11
Re: [AJUDA] Nome, texto a distancia - by [A]rray - 06.02.2012, 19:31
Respuesta: [AJUDA] Nome, texto a distancia - by Chis - 06.02.2012, 22:57
Re: [AJUDA] Nome, texto a distancia - by dPlaYer_ - 06.02.2012, 23:06
Respuesta: [AJUDA] Nome, texto a distancia - by Chis - 06.02.2012, 23:27
Re: [AJUDA] Nome, texto a distancia - by Dolby - 07.02.2012, 00:39
Re: [AJUDA] Nome, texto a distancia - by dPlaYer_ - 07.02.2012, 13:42
Re: [AJUDA] Nome, texto a distancia - by Lуs - 07.02.2012, 13:55

Forum Jump:


Users browsing this thread: 3 Guest(s)