if (isneedActionbecausebreath())
{
robotManager.Helpful.Keyboard.PressKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle," ");
}
internal bool isneedActionbecausebreath()
{
if (ObjectManager.Me.BreathActive)
{
Logging.WriteFight("isneedActionbecausebreath: "+ObjectManager.Me.BreathTimerLeft);
if (ObjectManager.Me.BreathTimerLeft < 10000)
{
return true;
}
}
return false;
}