Question is how the global cooldown effects skill timers. lets say I have the global cooldown set to the standard 1500 and then use this xml. 
action name="Brutal Strikes" cooldown="4900" hotkey="10" melee="true" />
  <action name="Clobber" cooldown="5000" hotkey="11" melee="true" />
  <action name="Wild Attack" cooldown="1900" hotkey="9" melee="true" />
  <action name="Swift Strike" cooldown="3200" hotkey="0" melee="true" />
  <action name="Rend" cooldown="42000" hotkey="2" melee="true" />
Is the bot going to add 1.5 seconds in between each skill? If not then what does global cooldown do?
I am working on an excel sheet so that I can get some of the timing of skills to match ferver better.
			
			
									
									
						Global Cooldown
Re: Global Cooldown
Code: Select all
        public virtual bool ShouldUse(Type state_, int globalCooldown_)
        {
            // Check if our cooldown is up
            TimeSpan elapsed = DateTime.Now - m_lastUsed;
            if (elapsed.TotalMilliseconds < m_cooldown + globalCooldown_)
            {
                return false;
            }
...The bot will add the global cooldown to the cooldown time of the skill. After the duration of CD + GCD the skill will be casted again, if conditions are true....
Re: Global Cooldown
Really??? ok so the global cooldown is functional?  hmm I may have to play with that some than because I think I know how I can use it to my benefit.