SA-MP Forums Archive
Progress bar lose outline - please help (with pictures) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Progress bar lose outline - please help (with pictures) (/showthread.php?tid=581502)



Progress bar lose outline - please help (with pictures) - Saddin - 13.07.2015

Hello, im using Progress Bars v2 by Toribio - https://sampforum.blast.hk/showthread.php?tid=537468

And im using this menu https://sampforum.blast.hk/showthread.php?tid=574271&page=3

So, everything works perfectly, but on clicking down arrow while using this menu few times this green progress bar lose outline. I dont know why and how to stop doing that.

Here are the pictures

before i type few times down arrow -


after -

I dont know whats the point.. :S


Re: Progress bar lose outline - please help (with pictures) - Evocator - 13.07.2015

Max bar value? Bar value? All are factors. Show the bar code.


Re: Progress bar lose outline - please help (with pictures) - Saddin - 13.07.2015

Onplayerconnect

SetPlayerProgressBarValue(playerid, PlayerBar:Bar0[playerid], 100);

Bar0[playerid] = CreatePlayerProgressBar(playerid, 548.000000, 37.000000, 61.000000, 4.199998, 777660159, 100.0000, 0);
//=====================//

Onplayerdeath

if(UmroOdGladi == 1)
{
KillTimer(HungerTimerMain[playerid]); //UBIJA GLAVNI TIMER OD PET MINUTA ZA GLAD - HUNGER
SCM(playerid, COLOR_DEATH, "* Onesvijestili ste se jer niste ništa jeli - slijedeći put ispunite svoje potrebe.");
SetPlayerProgressBarValue(playerid, Bar0[playerid], 10.0); //stavlja na 10 posto kada umre od gladi
UmroOdGladi=2;
}
//=====================//


forward playerhunger(playerid);
public playerhunger(playerid)
{

if(GetPlayerProgressBarValue(playerid, Bar0[playerid])<=0)
{
UmroOdGladi=1;
SetPlayerHealth(playerid, 0);
}
if(GetPlayerProgressBarValue(playerid, Bar0[playerid])>=0)
SetPlayerProgressBarValue(playerid, Bar0[playerid], GetPlayerProgressBarValue(playerid, Bar0[playerid])-2.0);


}

Please help