Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.


Also, it still writes Enaled not Enabled.
Does this plugin also cast dps clickies the mages summon?
IE:
- Firebound Orb III
- Summoned: Icebound Shard
Can it be configured to weave in the other clickies we accumulate...
- Dark Shield of the Scholar
- Necromantic Dragon Bone
Also, it still writes Enaled not Enabled.
Does this plugin also cast dps clickies the mages summon?
IE:
- Firebound Orb III
- Summoned: Icebound Shard
Can it be configured to weave in the other clickies we accumulate...
- Dark Shield of the Scholar
- Necromantic Dragon Bone
if (!ITC && !TC && (tHPs < 81) && Mage->ThaumatizeSpellReady(NukeSpell, dist)) {}
else if (!ITC && !TC && GoM && Mage->DichotomicSpellReady(NukeSpell, dist)) {} //Mage->IsSpellReady("Dichotomic Companion") && Mage->GetPetID()) { NukeSpell = "Dichotomic Companion"; }
else if (!ITC && Mage->ServantSpellReady(NukeSpell, dist)){}
else if (!ITC && Mage->ChaoticSpellReady(NukeSpell, dist)) {}
else if (Mage->OfManySpellReady(NukeSpell, dist)) {}
else if (Mage->SpearSpellReady(NukeSpell, dist)) {}
else if (Mage->BoltSpellReady(NukeSpell, dist)) {}
else if (Mage->FickleSpellReady(NukeSpell, dist)) {}
else if (DoAE && Mage->FireRainSpellReady(NukeSpell, dist)) {}
else if (DoAE && Mage->MagicRainSpellReady(NukeSpell, dist)) {}
else if (Mage->MagicNukeSpellReady(NukeSpell, dist)) {}
else if (Mage->BoltSpellReady(NukeSpell, dist)) {}
else if (Mage->NextItemClicky(NukeSpell, dist)) { item = true; }
[MQ2AFNuke]
Enaled=1
CampFireRez=0
DoReviveMerc=0
PauseOnZone=0
MemSpells=0
DoMed=0
DoMez=0
DoBurn=1
MobBurnThreshold=0
DoAANukes=1
Harvest=1
ManualAssist=0
BreakInvis=0
AssistAt=99
HarvestAt=75
DoMount=0
Dummy=0
MezThreshold=2
MedPct=98
StopAt=0
MountItem=Armored Snow Puma Saddle
MegaBurn=0
DoGlyph=0
BuyGlyph=1
NukesOn=1
MedToFull=0
DoBuffs=0
WaitForITC=1
SingleForce=0
DoAE=0
Fire=1
Ice=1
Magic=1
Debug=0

@jimbob , thanks heaps for the clarifications. Using AFNuke my Wizzie is poking his nose into the upper half of recent raid parses. **happy dance**1: Right now, it will only use spell twincast when burning.
2: You are correct.
3: FD and AD will not fire on Spell TC if WaitForITC is set. They won't cast until ITC is ready and cast.
4: MQ2AFNuke won't use Manaburn at all. I may add it in the future.
5: MQ2AFNuke will use both fury AAs with burns.
Sorry for the delay in reply. I've been a little busy lately.![]()
Hi, JimboCode:if (!ITC && !TC && (tHPs < 81) && Mage->ThaumatizeSpellReady(NukeSpell, dist)) {} else if (!ITC && !TC && GoM && Mage->DichotomicSpellReady(NukeSpell, dist)) {} //Mage->IsSpellReady("Dichotomic Companion") && Mage->GetPetID()) { NukeSpell = "Dichotomic Companion"; } else if (!ITC && Mage->ServantSpellReady(NukeSpell, dist)){} else if (!ITC && Mage->ChaoticSpellReady(NukeSpell, dist)) {} else if (Mage->OfManySpellReady(NukeSpell, dist)) {} else if (Mage->SpearSpellReady(NukeSpell, dist)) {} else if (Mage->BoltSpellReady(NukeSpell, dist)) {} else if (Mage->FickleSpellReady(NukeSpell, dist)) {} else if (DoAE && Mage->FireRainSpellReady(NukeSpell, dist)) {} else if (DoAE && Mage->MagicRainSpellReady(NukeSpell, dist)) {} else if (Mage->MagicNukeSpellReady(NukeSpell, dist)) {} else if (Mage->BoltSpellReady(NukeSpell, dist)) {} else if (Mage->NextItemClicky(NukeSpell, dist)) { item = true; }
void UseItem(PCHAR szItem) {
if (GlobalLastTimeUsed >= GetTickCount64()) return;
char temp[MAX_STRING] = "/useitem \"";
strcat_s(temp, MAX_STRING, szItem);
char temp2[MAX_STRING] = "\"";
strcat_s(temp, MAX_STRING, temp2);
EzCommand(temp);
WriteChatf("%sUsing Item: \ay%s", pluginmsg.c_str(), szItem);
GlobalLastTimeUsed = GetTickCount64() + GlobalSkillDelay;
}
