[AJUDA] Labels
#3

pawn Код:
public LabelStreamUpdate()
{
    for(new i, f = GetMaxPlayers(); i < f; i++)
    {
        if(IsPlayerConnected(i))
        {
            for(new j, k = LabelsCreated; j < k; j++)
            {
                if(IsPlayerInRangeOfPoint(i,LInfo[j][Distance],LInfo[j][XPos],LInfo[j][YPos],LInfo[j][ZPos]))
                {
                    if(LInfo[j][IsLabelCreated] == 1) continue;
                    LInfo[j][Label] = Create3DTextLabel(LabelText[i],LInfo[j][Color],LInfo[j][XPos],LInfo[j][YPos],LInfo[j][ZPos],LInfo[j][Distance],LInfo[j][VirtualWorld],LInfo[j][TestLOS]);
                    LInfo[j][IsLabelCreated] = 1;
                }
                if(LInfo[j][IsLabelCreated] == 1 && !IsPlayerInRangeOfPoint(i,LInfo[j][Distance],LInfo[j][XPos],LInfo[j][YPos],LInfo[j][ZPos]))
                {
                    Delete3DTextLabel(LInfo[j][Label]);
                    LInfo[j][IsLabelCreated] = 0;
                }
            }
        }
        else continue;
    }
    return 1;
}
Reply


Messages In This Thread
[AJUDA] Labels - by FireCat - 03.11.2011, 19:06
Re: [AJUDA] Labels - by [O.z]Caroline - 03.11.2011, 19:39
Re: [AJUDA] Labels - by SlashPT - 03.11.2011, 20:04

Forum Jump:


Users browsing this thread: 1 Guest(s)