Re: [MCCODES V2] Fix Overstreteched Stat Bars
This is nice +1 but do you think you could do something else like this... soo lets say a user has 10/10 brave their brave bar will be 100% maxed out, but if they have 20/10 brave then their brave bar will be double size, is there a way of reducing it so it is the same size as 10/10?
Thanks for reading, +1 again ;)
Edit: I figured it out, here goes :D
find:
$hpopp=100-$hpperc;
Then under it add...
if ($brperc > 100)
{
$brperc = 100;
}
Thats with brave, just repeat that with the other and change the "br" to the other begining letters of each bar and you should be fine :D