Originally Posted by
sportplayer2k
i went to the raid dummy and enabled the script and casted a spell at the dummy to start the script but nothing happend after that?
Any errors poped?
Edit: Try this - unload PQR, /reloadui, start rotation WITHOUT targetting something,target dummy,cast a spell.
Edit2: Ok found the problem,updated SVN,if u don't use SVN - then the problem is here:
Code:
<Ability><Name>-- Autopause --</Name><Default>false</Default><SpellID>0</SpellID><Actions></Actions>
<Lua>
local unitincombat = false
for i, target in ipairs(PQ_PriorityList) do
if target then
if UnitAffectingCombat(target) then unitincombat = true end
end
end
if not PQ_InCombat or not unitincombat then
return true
end
</Lua>
There was AND in released version.It will not affect real fights,but dummy doesn't fall in fight when u attack it,so UnitAffectingCombat will return FALSE.