Nightskine
Member
- Joined
- Oct 30, 2010
- Messages
- 150
- Reaction score
- 1
Hey guys,
I'm having trouble with this hunter CC for the Marksman spec.
I'm trying to keep the Improved Steady Shot buff up by casting Steady Shot twice in a row.
However what I have in the coding for that just doesn't seem to be working
On a related note - what does Thread.Sleep() do? I am under the impression that it pauses the CC for the miliseconds listed in the ().
Or does it only tell HB not to look into that particular if() thread for that time?
Thanks for all the help in the past guys - You've all helped me make lazyraider CC's for all the classes I play - feels great using something you've made yourself!
I'm having trouble with this hunter CC for the Marksman spec.
I'm trying to keep the Improved Steady Shot buff up by casting Steady Shot twice in a row.
However what I have in the coding for that just doesn't seem to be working
Code:
if (!Me.HasAura("Improved Steady Shot"))
{
SpellManager.Cast("Steady Shot");
Thread.Sleep(2*1000);
SpellManager.Cast("Steady Shot");
}
On a related note - what does Thread.Sleep() do? I am under the impression that it pauses the CC for the miliseconds listed in the ().
Or does it only tell HB not to look into that particular if() thread for that time?
Thanks for all the help in the past guys - You've all helped me make lazyraider CC's for all the classes I play - feels great using something you've made yourself!