Im having problems implementing a bar with static size, for some reason its always empty and never fills (but the experience value does changes), this is my code
maxexper=(level*level)*50;
SetSecondColor(255, 255, 255);
DrawBar(0, 500/3, 255, 0, 0);
bartmp=(exper/maxexper)*(500/3);
if(bartmp>maxexper)
{
bartmp=500;
}
SetBackColor(194,194,194);