I am so confused because reading through the script, the way we assume it work and the way that the script currently is ...doesn't match.
I had to edit the skillmgr for the Off GCD Checkbox, Combox Breaker to work with ninja.
If skill.offgcd equals true, castable should be true not false.
(Original Thread)
For the Combo Breaker to work the check if skill.cbreak equal true (1) then nextSkill resume what was previous. Default is 0.
Can someone elaborate?
I had to edit the skillmgr for the Off GCD Checkbox, Combox Breaker to work with ninja.
If skill.offgcd equals true, castable should be true not false.
PHP Code:
if ( skill.offgcd == "1" ) then
if (SkillMgr.IsGCDReady() or SkillMgr.lastOFFCD) then
castable = false
end
end
(Original Thread)
For the Combo Breaker to work the check if skill.cbreak equal true (1) then nextSkill resume what was previous. Default is 0.
PHP Code:
if (action:Cast(tpos.x, tpos.y, tpos.z)) then
skill.lastcast = Now()
if skill.cbreak == "0" then
SkillMgr.prevSkillID = skill.id
end
SkillMgr.nextSkillID = tostring(skill.nskill)
SkillMgr.nextFailedTimer = Now() + 8000
return true
end
Can someone elaborate?