tuanha
Well-Known Member
- Joined
- Nov 29, 2011
- Messages
- 6,998
- Reaction score
- 124
Hi guys,
This is GlobalCooldownLeft description
But as I do a simple log
This is the result
As you can see, GlobalCooldownLeft return only 00:00:01.4760000 or 00:00:00 and NOT the timeleft till GlobalCooldown go off
This is a bug or are other way to check REAL GlobalCooldownLeft it?
Thank you
This is GlobalCooldownLeft description
Code:
<member name="P:Styx.Logic.Combat.SpellManager.GlobalCooldownLeft">
<summary>
Returns the amount of time left on Global Cooldown.
<returns> TimeSpan with remaining time for the Global Cooldown Timer, TimeSpan.Zero if it's not running. </returns>
</summary>
</member>
But as I do a simple log
Code:
Logging.Write("CurrentCastTimeLeft: " + Me.CurrentCastTimeLeft.TotalMilliseconds.ToString() + " - GlobalCooldownLeft: " + SpellManager.GlobalCooldownLeft.ToString());
This is the result
Code:
CurrentCastTimeLeft: 2437 - GlobalCooldownLeft: 00:00:01.4760000
CurrentCastTimeLeft: 2367 - GlobalCooldownLeft: 00:00:01.4760000
CurrentCastTimeLeft: 2297 - GlobalCooldownLeft: 00:00:01.4760000
CurrentCastTimeLeft: 2226 - GlobalCooldownLeft: 00:00:01.4760000
CurrentCastTimeLeft: 2156 - GlobalCooldownLeft: 00:00:01.4760000
CurrentCastTimeLeft: 2086 - GlobalCooldownLeft: 00:00:01.4760000
CurrentCastTimeLeft: 2016 - GlobalCooldownLeft: 00:00:01.4760000
CurrentCastTimeLeft: 1945 - GlobalCooldownLeft: 00:00:01.4760000
CurrentCastTimeLeft: 1875 - GlobalCooldownLeft: 00:00:01.4760000
CurrentCastTimeLeft: 1805 - GlobalCooldownLeft: 00:00:01.4760000
CurrentCastTimeLeft: 1735 - GlobalCooldownLeft: 00:00:01.4760000
CurrentCastTimeLeft: 1665 - GlobalCooldownLeft: 00:00:01.4760000
CurrentCastTimeLeft: 1595 - GlobalCooldownLeft: 00:00:01.4760000
CurrentCastTimeLeft: 1525 - GlobalCooldownLeft: 00:00:01.4760000
CurrentCastTimeLeft: 1455 - GlobalCooldownLeft: 00:00:01.4760000
CurrentCastTimeLeft: 1385 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 1315 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 1245 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 1174 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 1008 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 938 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 868 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 798 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 728 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 658 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 589 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 520 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 451 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 382 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 312 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 242 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 172 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 103 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 34 - GlobalCooldownLeft: 00:00:00
CurrentCastTimeLeft: 0 - GlobalCooldownLeft: 00:00:00
As you can see, GlobalCooldownLeft return only 00:00:01.4760000 or 00:00:00 and NOT the timeleft till GlobalCooldown go off
This is a bug or are other way to check REAL GlobalCooldownLeft it?
Thank you