• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver
MQ2AFNuke

Release MQ2AFNuke

I need to figure out why two of my baby wizards won’t do anything with ma2afnuke loaded. My main group wizzie uses it like a champ, but these two just stand there.
 
I need to figure out why two of my baby wizards won’t do anything with ma2afnuke loaded. My main group wizzie uses it like a champ, but these two just stand there.
Strange... Is that with the latest debug release I posted?

still good to go, no issues in about 8hrs yday and an hour this am. also looks like its finally using reg twincast on the wiz!
Yep. I may have forgotten to mention that in the release notes. :)
 
Strange... Is that with the latest debug release I posted?


Yep. I may have forgotten to mention that in the release notes. :)

Haha, i've had this issue with the baby wizard for months and months.. no idea wtf it could be. I need to go back to earlier posts in this thread to find what you suggested last time.
 
Haha, i've had this issue with the baby wizard for months and months.. no idea wtf it could be. I need to go back to earlier posts in this thread to find what you suggested last time.
Interesting... Is MA set on the group? Are the baby wizards in the group? What level are they? I don't remember what I suggested either. Check for the combat dummy setting. It needs to be off outside the GGH. Check the assist settings too. I usually do 99%, but that reduces DPS a little on nameds. 100 is fun. Basically, you have to lock aggro on pulls if you set it to 100. :)
 
I have 2 small suggestions, not sure if previously mentioned. Whether in or out of burn mode, stormjolt vortex needs to be cast every single time it's up. In some ways even more important for baseline dps than claw. When ITC is going with AD or FD afnuke skips vortex. Same deal with musing gambit. Vaguely remember reading something that gambit is tougher to get going from a code perspective.
 
Interesting... Is MA set on the group? Are the baby wizards in the group? What level are they? I don't remember what I suggested either. Check for the combat dummy setting. It needs to be off outside the GGH. Check the assist settings too. I usually do 99%, but that reduces DPS a little on nameds. 100 is fun. Basically, you have to lock aggro on pulls if you set it to 100. :)

Yea, they're in group and there is a MA set. I checked and dummy mode is off.

I think last time I had to copy/paste in different settings in my character.ini than what I had. Like the plugin hadn't auto-created the full settings list. I'll have to pull my main wizzy (that does work, I think) settings over to see if that makes a difference.
 
Having the same issue, won't do anything. I see he targets the mob...then naada.

Disregard, just saw the new DLL, that works :)
 
Last edited:
I'll have to give this a try tomorrow. I wasn't able to get my issues sorted.... and I noticed that my wizzy wasn't casting AA's, even though that was enabled. So.... back to the drawing board for me!

Ok, let me know if you have any success. I can post my settings if you like?

[CODE lang="ini" title="Jimbob's Settings"][MQ2AFNuke]
NukesOn=1
DoMed=0
DoMount=0
MedPct=99
HarvestAt=70
Debug=0
DoAANukes=1
DoBurn=1
Dummy=0
Magic=1
Fire=1
Cold=1
BreakInvis=1
MobBurnThreshold=2
Megaburn=0
DoGlyph=0
BuyGlyph=0
Ice=1
WaitForITC=0
AssistAt=99
MedToFull=0
[/CODE]
 
Ok, let me know if you have any success. I can post my settings if you like?

[CODE lang="ini" title="Jimbob's Settings's Settings"][MQ2AFNuke]
NukesOn=1
DoMed=0
DoMount=0
MedPct=99
HarvestAt=70
Debug=0
DoAANukes=1
DoBurn=1
Dummy=0
Magic=1
Fire=1
Cold=1
BreakInvis=1
MobBurnThreshold=2
Megaburn=0
DoGlyph=0
BuyGlyph=0
Ice=1
WaitForITC=0
AssistAt=99
MedToFull=0
[/CODE]

Your settings include stuff I don't have (and have never seen). I'll try yours and see if maybe a settings change at some point broke my config.
 
Your settings include stuff I don't have (and have never seen). I'll try yours and see if maybe a settings change at some point broke my config.
You can use the /nuke saveini to save all your settings + defaults you haven't changed to the .ini... Just do it on all your wizards and compare. I'll start on a in game GUI this week. Not entirely sure how I want to handle it yet though. I want to rewrite some of my settings class to make it better to work with.
 
Sorry, something I have neglected about Host of the Elements and Servant of Ro. When Host of the elements is casted, pets charge to your target, during this period, Servant of Ro can not be casted (system says: your ability failed. Timer has been reset.). Afnuke will spam Servant of ro for about 5 seconds. So maybe a 10 seconds timer is needed during this 2 AA.
 
Last edited:
Might I suggest a toggle for using swarms? Sometimes on a raid, they don't want us using swarms sho it would be nice to toggle swarms on and off as needed
 
What would you need to support this from level 1 up.... given there will be a lot of low levels for a long time on Rizlona....
 
This is also supported for level 1 up. Both this and mq2heals are optimized for higher levels, but will work with noob toons.
 
Trying this out on baby wizard on rizlona...she keeps nuking the ma over and over with blast of cold. The only settings i've changed is assist to 90 rather than 99.
 
That's strange. There's nothing in the burn logic to tell it whether it's in a group or raid setting. It should be the same either way.
So would you mind checking if the plugin intending to cast swarm pet or not in burn mode? I am sure it won't in raid
 
Could we have a /nuke toggle to go between off and on? would be helpful to create just one hotkey
 
Any progression on this? now I have to manually cast servant of ro first before i turn burn on. and is there plan on mage's harvest spells?
Yes, I made this change a while back. Is it not working properly?

This is the snippet of code I changed:

[CODE lang="cpp" title="Burn Snippet"]
if (GetPetID() && IsAAReady("Frenzied Burnout"))
{
BurnSpell = "Frenzied Burnout";
}
else if (GetPetID() && IsAAReady("Virulent Talon"))
{
BurnSpell = "Virulent Talon";
}
else if (IsAAReady("Servant of Ro"))
{
BurnSpell = "Servant of Ro";
}
else if (IsAAReady("Host of the Elements"))
{
BurnSpell = "Host of the Elements";
}
else if (!Burn && IsAAReady("Heart of Skyfire"))
{
BurnSpell = "Heart of Skyfire";
}
else if (!Burn && !AnyBuff("Elemental Union") && IsAAReady("Elemental Union"))
{
BurnSpell = "Elemental Union";
}
[/CODE]

I can put Servant of Ro as the first "burn spell" if you prefer.
 
My bad. Servant of ro is fixed. I had thought there would be a patch note:)
Haverst is not working for mage yet.
FBO is not working. In fact I did not know afnuke will use FBO untile I saw the code. AA says it is "Frenzied Burnout XVI", I am not sure if this is the reason it is not casted.
Virulent Talon is no longer a seperate AA. It has been put into FBO for some time.
Elemental Union is renamed to "Thaumaturge's focus" and IT ONLY INCREASES MAGIC DD now. So I suggested removing it from burn section.
I remembered you said afnuke uses fire orb, but it did not work either (neither automatic fire orb nor summon orb if you have not one)
Lastly, can add swarm line in burn section?
 
Last edited:
My bad. Servant of ro is fixed. I had thought there would be a patch note:)
Haverst is not working for mage yet.
FBO is not working. In fact I did not know afnuke will use FBO untile I saw the code. AA says it is "Frenzied Burnout XVI", I am not sure if this is the reason it is not casted.
Virulent Talon is no longer a seperate AA. It has been put into FBO for some time.
Elemental Union is renamed to "Thaumaturge's focus" and IT ONLY INCREASES MAGIC DD now. So I suggested removing it from burn section.
I remembered you said afnuke uses fire orb, but it did not work either (neither automatic fire orb nor summon orb if you have not one)
Lastly, can add swarm line in burn section?
This is excellent information. I'll try and get these changes in this weekend. Gather might take a little longer, as I haven't refactored that part of the base plug-in.

The fire orbs should be casting... I'll have to do some debugging to see why they're not. My mage isn't 115, so it may take some time to sort.

For Frenzied Burnout, it should still work. That AA call will accept a partial match, so I don't have to account for every rank name of the AA.

For the pet swarm, do you want to see /pet swarm or /pet qswarm? I may have that in there already... I'll double check.
 
For the pet swarm, do you want to see /pet swarm or /pet qswarm? I may have that in there already... I'll double check.
That's not what I mean.
When not burn(115 mage), it casts Riotous servant- Chaotic pyroclasm- shockwave of many- spears of molten komatiie
when burn, it casts shockwave of many- spears of molten komatiie- spears of molten acronite.
What I suggested is add Riotous servant in burn cast cycle, such as Riotous servant-shockwave of many- spears of molten komatiie- spears of molten acronite
 
I was able to make these changes. Let me know if there are any issues (when the plugin is updated). I haven't tested any of them yet.
 
Release MQ2AFNuke

Users who are viewing this thread

Back
Top
Cart