ciuine wrote:Mainly an update for 2.0.06 but other minor changes.

volarin wrote:I'm not an Tensessian (lol) but I heard numerous rumors that the famous giggling Gibberling was none other then Cozyheart. I declare a giggling duel against you, Cozyheart!
monarchist_ wrote:ciuine wrote:Mainly an update for 2.0.06 but other minor changes.
Awesome addon, does it track Kazul's phases by chance?
ciuine wrote:The add-on does not currently track Kazul's phases to my knowledge. It is capable of tracking any boss' buff/debuffs without any additional data being provided however, so it is possible that if they phase change is buff based that it will be tracked.

volarin wrote:I'm not an Tensessian (lol) but I heard numerous rumors that the famous giggling Gibberling was none other then Cozyheart. I declare a giggling duel against you, Cozyheart!
ciuine wrote:I don't see how I could use the information you provided.
int cycle = 0;
boolean elementalPhase = false;
boolean astralPhase = false;
boolean naturePhase = false;
boolean physicalPhase = false;
if (cycle == 4){
elementalPhase = false;
astralPhase = false;
naturePhase = false;
physicalPhase = false;
//add everything to GUI display
}
if(target.getBuff()==elementalPhase){
elementalPhase = true;
cycle = cycle + 1;
}elseif(target.getBuff()==astralPhase){
astralPhase = true;
cycle = cycle + 1;
}elseif(target.getBuff()==naturePhase){
naturePhase = true;
cycle = cycle + 1;
}elseif(target.getBuff()==physicalPhase){
physicalPhase = true;
cycle = cycle + 1;
}
if(elementalPhase)
//remove from GUI display
if(astralPhase)
//remove from GUI display
if(naturePhase)
//remove from GUI display
if(physicalPhase)
//remove from GUI display

volarin wrote:I'm not an Tensessian (lol) but I heard numerous rumors that the famous giggling Gibberling was none other then Cozyheart. I declare a giggling duel against you, Cozyheart!
ciuine wrote:I don't see the point in that. I've already mentioned the add-on is quite capable of doing buffs/debuffs on its own without additional input.

volarin wrote:I'm not an Tensessian (lol) but I heard numerous rumors that the famous giggling Gibberling was none other then Cozyheart. I declare a giggling duel against you, Cozyheart!