Having even stranger problems when i move the WorldStateScoreFrame using visor. Also, where is the option to disable skinning this frame altogether? I cant seem to find it
anyone have the problem of default bags opening at mailboxes etc. I cant even manage to hide the default bag frames with visor either. An option to disable default bags altogether is welcome.
Looking for addon to do one thing.
Buy multiple stack from a vendor.
Basicly when you shift click an item you could enter more than 20, lets say 100 or 237 to buy.
see, i thought it was due to a dkp addon, but it seems that it isnt since i disabled it.
I managed to go through all my mods and disable them one by one (not my libs tho) and the problem didnt go away. im guessing its a problem with a common lib included in the standalone libs package.
bar glide does jsut what youd expect, it glides the bar from your hp before taking damage, to what your hp was after damage.
It does this by stepping the bare 1/2 way to the target hp every onupdate(or multiple).
so lets say you had 2000hp and take 1000dmg,
Your bar would go from 2000 -> 1500 -> 1250 -> 1125 -> 1068 -> 1034..............etc.
(im using nurfed btw)
this is the code from nurfed btw
function Nurfed_Units:StatusBarUpdate(arg1)
if (this.fade < 1) then
this.fade = this.fade + arg1;
if this.fade > 1 then
this.fade = 1;
end
local delta = this.endvalue - this.startvalue;
local diff = delta * (this.fade / 1);
this.startvalue = this.startvalue + diff;
this:SetValue(this.startvalue);
end
end
0
Having even stranger problems when i move the WorldStateScoreFrame using visor. Also, where is the option to disable skinning this frame altogether? I cant seem to find it
0
0
did not work. Is there now way to trigger the timer when i use eviscerate or Slice and Dice?
0
But it doesnt refresh when i re finisher.
0
Buy multiple stack from a vendor.
Basicly when you shift click an item you could enter more than 20, lets say 100 or 237 to buy.
0
0
0
0
I managed to go through all my mods and disable them one by one (not my libs tho) and the problem didnt go away. im guessing its a problem with a common lib included in the standalone libs package.
0
Increasing rate goes up to 170kb/s at times. Disabled mods like oRA2 combat logs mods etc cant seem to get it to stop.
Anyone else have this problem?
Is teksupport updated or even possible to work without tainting everything?
0
edit: i was wrong it doesnt. im sure a module using ItemBonusLib could be done tho.
0
0
0
0
It does this by stepping the bare 1/2 way to the target hp every onupdate(or multiple).
so lets say you had 2000hp and take 1000dmg,
Your bar would go from 2000 -> 1500 -> 1250 -> 1125 -> 1068 -> 1034..............etc.
(im using nurfed btw)
this is the code from nurfed btw