I'm using Honorbuddy 2.0.0.3895
I can't seem to get my auras correctly.
It says I always have Molten Core aura.
I tried .ActiveAuras
I tried .GetAllAuras
Any help would be great.
I can't seem to get my auras correctly.
It says I always have Molten Core aura.
I tried .ActiveAuras
I tried .GetAllAuras
Code:
[FONT=Courier New][SIZE=2]/* Using this in combat */[/SIZE][/FONT]
[FONT=Courier New][SIZE=2][COLOR=#0000ff][COLOR=#0000ff]if[/COLOR][/COLOR] (_me.CurrentTarget.Distance < 38 && _me.Auras.ContainsKey([COLOR=#a31515][COLOR=#a31515]"Molten Core"[/COLOR][/COLOR]))[/SIZE][/FONT]
[FONT=Courier New][SIZE=2]{[/SIZE][/FONT]
[FONT=Courier New][SIZE=2][COLOR=#0000ff][COLOR=#0000ff] if[/COLOR][/COLOR] (Incinerate())[/SIZE][/FONT]
[FONT=Courier New][SIZE=2] {[/SIZE][/FONT]
[FONT=Courier New][SIZE=2][COLOR=#0000ff][COLOR=#0000ff] return[/COLOR][/COLOR];[/SIZE][/FONT]
[FONT=Courier New][SIZE=2] }[/SIZE][/FONT]
[FONT=Courier New][SIZE=2]}[/SIZE][/FONT]
[FONT=Courier New][SIZE=2]/*Used this to print all auras */[/SIZE][/FONT]
[COLOR=#0000ff][COLOR=#0000ff][FONT=Courier New][SIZE=2]foreach[/SIZE][/FONT][/COLOR][/COLOR][FONT=Courier New][SIZE=2] ([COLOR=#2b91af][COLOR=#2b91af]KeyValuePair[/COLOR][/COLOR]<[COLOR=#0000ff][COLOR=#0000ff]string[/COLOR][/COLOR], [COLOR=#2b91af][COLOR=#2b91af]WoWAura[/COLOR][/COLOR]> sp [COLOR=#0000ff][COLOR=#0000ff]in[/COLOR][/COLOR] _me.Auras)[/SIZE][/FONT]
[FONT=Courier New][SIZE=2]{[/SIZE][/FONT]
[FONT=Courier New][SIZE=2][COLOR=#0000ff][COLOR=#0000ff] if[/COLOR][/COLOR] (_me.Auras.ContainsKey(sp.Key))[/SIZE][/FONT]
[FONT=Courier New][SIZE=2] {[/SIZE][/FONT]
[FONT=Courier New][SIZE=2] dlog(sp.Key + [COLOR=#a31515][COLOR=#a31515]" "[/COLOR][/COLOR] + _me.Auras[sp.Key].Flags.ToString());[/SIZE][/FONT]
[FONT=Courier New][SIZE=2] }[/SIZE][/FONT]
[COLOR=#0000ff][COLOR=#0000ff][FONT=Courier New][SIZE=2] else[/SIZE][/FONT][/COLOR]
[/COLOR][FONT=Courier New][SIZE=2] {[/SIZE][/FONT]
[FONT=Courier New][SIZE=2] dlog(sp.Key);[/SIZE][/FONT]
[FONT=Courier New][SIZE=2] }[/SIZE][/FONT]
[FONT=Courier New][SIZE=2]}[/SIZE][/FONT]
Any help would be great.