Floats on a textdraw statbar, Pulls other players stats?
#1

ok, i made a stat bar, for health armour kills and deaths, floating them on a textdraw, but ingame, ID 0 see's ID 1's stats.


pawn Код:
forward stats();
public stats()
{
    for(new playerid; playerid < MAX_PLAYERS; playerid ++)
    {
        if(IsPlayerConnected(playerid))
        {
    new Float:pHealth, Float:pArmour, string[15];
    GetPlayerHealth(playerid,pHealth);
    format(string, sizeof(string), "Health:%.0f", pHealth);
    TextDrawSetString(Textdraw2, string);
   
    GetPlayerArmour(playerid,pArmour);
    format(string, sizeof(string), "Armour:%.0f", pArmour);
    TextDrawSetString(Textdraw3, string);
   
    format(string, sizeof(string), "Kills:%.0f", GetPlayerScore(playerid));
    TextDrawSetString(Textdraw4, string);
   
    format(string, sizeof(string), "Deaths:%.0f", GetPVarInt(playerid,"Deaths"));
    TextDrawSetString(Textdraw5, string);
        }
    }
}
Any ideas? I need this fixed as soon as possible, i have tryed EVERYTHING and still nothing.
Reply


Messages In This Thread
Floats on a textdraw statbar, Pulls other players stats? - by -Rebel Son- - 29.04.2010, 18:03
Re: Floats on a textdraw statbar, Pulls other players stats? - by Virtual1ty - 29.04.2010, 18:06
Re: Floats on a textdraw statbar, Pulls other players stats? - by -Rebel Son- - 29.04.2010, 18:16
Re: Floats on a textdraw statbar, Pulls other players stats? - by Niixie - 29.04.2010, 18:39
Re: Floats on a textdraw statbar, Pulls other players stats? - by -Rebel Son- - 29.04.2010, 18:45
Re: Floats on a textdraw statbar, Pulls other players stats? - by MadeMan - 29.04.2010, 19:47
Re: Floats on a textdraw statbar, Pulls other players stats? - by RyDeR` - 29.04.2010, 20:23
Re: Floats on a textdraw statbar, Pulls other players stats? - by -Rebel Son- - 29.04.2010, 20:39
Re: Floats on a textdraw statbar, Pulls other players stats? - by MadeMan - 30.04.2010, 13:48
Re: Floats on a textdraw statbar, Pulls other players stats? - by Uninvited - 06.05.2010, 07:05
Re: Floats on a textdraw statbar, Pulls other players stats? - by -Rebel Son- - 06.05.2010, 17:50
Re: Floats on a textdraw statbar, Pulls other players stats? - by Hernaner28 - 02.06.2010, 00:33
Re: Floats on a textdraw statbar, Pulls other players stats? - by -Rebel Son- - 02.06.2010, 01:25
Re: Floats on a textdraw statbar, Pulls other players stats? - by Hernaner28 - 02.06.2010, 16:35
Re: Floats on a textdraw statbar, Pulls other players stats? - by -Rebel Son- - 03.06.2010, 04:11
Re: Floats on a textdraw statbar, Pulls other players stats? - by Hernaner28 - 03.06.2010, 23:08

Forum Jump:


Users browsing this thread: 3 Guest(s)