Q: How to get counter value from buff?
Posted: Wed Jul 25, 2012 6:55 am
Some buffs have iteger counters (not time counters)
For example druid's nature points.
How to get those counters values?
EDIT: NVW i've found it myself
For example druid's nature points.
How to get those counters values?
EDIT: NVW i've found it myself
Code: Select all
player:updateBuffs();for k,v in pairs(player.Buffs) do print(k," ",v.Name," ",v.Count," ",v.Level) end