ski Well-Known Member Joined Feb 12, 2010 Messages 3,720 Reaction score 48 Nov 8, 2010 #1 Anyone know how to check the cooldown of a pet ability, ie. Felstorm? SpellManager.CanCast("Felstorm"); never returns true.
Anyone know how to check the cooldown of a pet ability, ie. Felstorm? SpellManager.CanCast("Felstorm"); never returns true.
cowdude Active Member Joined Feb 17, 2010 Messages 337 Reaction score 27 Nov 8, 2010 #2 bool WoWSpell.FromId(42).Cooldown seems to work fine.
CodenameG New Member Joined Jan 15, 2010 Messages 38,364 Reaction score 231 Nov 8, 2010 #3 i have this issue with my water elementals freeze ability, i just made a timer, so it will only enable usage, when the cooldown is expired. its kinda the cheap way to do it though
i have this issue with my water elementals freeze ability, i just made a timer, so it will only enable usage, when the cooldown is expired. its kinda the cheap way to do it though
ski Well-Known Member Joined Feb 12, 2010 Messages 3,720 Reaction score 48 Nov 8, 2010 #4 cowdude said: bool WoWSpell.FromId(42).Cooldown seems to work fine. Click to expand... Does it return the cooldown remaining or just the total cooldown? (Yes I'll actually go find out, but I wanted to ask too )
cowdude said: bool WoWSpell.FromId(42).Cooldown seems to work fine. Click to expand... Does it return the cooldown remaining or just the total cooldown? (Yes I'll actually go find out, but I wanted to ask too )
cowdude Active Member Joined Feb 17, 2010 Messages 337 Reaction score 27 Nov 8, 2010 #5 cowdude said: bool WoWSpell.FromId(42).Cooldown seems to work fine. Click to expand... (filler)^2
ski Well-Known Member Joined Feb 12, 2010 Messages 3,720 Reaction score 48 Nov 8, 2010 #6 cowdude said: (filler)^2 Click to expand... Go study
Smarter Member Joined Jan 15, 2010 Messages 763 Reaction score 9 Nov 8, 2010 #7 Please update if you find this out, I find in a BT Setup it doesn't really matter, cause it just tries it anyways, but it would be nice to know.
Please update if you find this out, I find in a BT Setup it doesn't really matter, cause it just tries it anyways, but it would be nice to know.
exfelon Active Member Joined Jan 15, 2010 Messages 1,372 Reaction score 8 Nov 8, 2010 #8 i have to ask this. what does BT stand for? I do know that a bool returns either true or false....
ski Well-Known Member Joined Feb 12, 2010 Messages 3,720 Reaction score 48 Nov 8, 2010 #9 exfelon said: i have to ask this. what does BT stand for? I do know that a bool returns either true or false.... Click to expand... Behavior Tree
exfelon said: i have to ask this. what does BT stand for? I do know that a bool returns either true or false.... Click to expand... Behavior Tree
exfelon Active Member Joined Jan 15, 2010 Messages 1,372 Reaction score 8 Nov 8, 2010 #10 i just knew you'd be the one to answer, thanks.