What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Eryxx13

New Member
Joined
Sep 6, 2015
Messages
1
Reaction score
0
Hi everyone. I just got Demon buddy today and thought I would try it out. I have a wizard that I want to farm death breaths with. I am using trinity combat routine but I am having a problem. He goes into a rift and fights fine. Get to 20 Chanto stacks and goes into archon form. But once archon ends and he finds another group of monsters he just sits there and does nothing.

Once he dies and resurrect the bot starts to attack again and gets to 20 stacks and goes archon again and repeats the above. Not sure what is causing this. I have the latest version of Demonbuddy and Trinity.

Thank and I hope someone can help me.
 
Same problem, using my custom version to work ~
For anyone who wants a fix for now:

View attachment WizardCombat.cs

There's a Chantodo Stack, only use Archon on 20, and re-buffs Ice Armor and Magic Weapon every time before entering Archon again.
 
Last edited:
interesting. Possibly something is extending the archon 'buff' beyond archon being active.

Can someone test this for me.
 

Attachments

Last edited:
interesting. Possibly something is extending the archon 'buff' beyond archon being active.

Can someone test this for me.

In the middle of a GR, will test soon and give the feedback
 
In the middle of a GR, will test soon and give the feedback

Thank you, can you test with this hat on if possible

The Swami
Legendary Wizard Hat
The damage bonus from kills while in Archon form now lasts for 10–15 seconds after Archon expires.
 
Thank you, can you test with this hat on if possible

The Swami
Legendary Wizard Hat
The damage bonus from kills while in Archon form now lasts for 10–15 seconds after Archon expires.

Okay, not a problem, that's on my build.

Update
Watching the bot making a GR, no problems so far, the main issue is still that when it leaves the Archon it stands still for 2-3 seconds trying to attack but it can't for some reason.
While you are here, the Item Ranking is broken, some items like the Chantodo Ancient are giving errors on the table and on the Demonbuddy shows some errors on Trinity and the plugin kind of crashes and restarts.
I talked about it yesterday when happened:
Well, let me say to you that Item Rank is fucking BROKEN, so, here's the history, I was watching my bot play a GR when I noticed that he bought this Item from Kadala:
HiBaSxr.jpg

So I thinked "YEAH, FINALLY, ANCIENT" and I was happy, my Item ranking was configured to only keep Ancients items, went to chat on facebook again, and then when I came back I was watching the Town Run and saw the bot FUCKING RECYCLING MY ANCIENT CHANTODO, OMFG I ALMOST HAD A HEART ATTACK, then I kind of wanted to cry, now, I'm kind of sad, the funny thing is, he stashed a fucking trash Ancient Wand and a Fucking Firebird Ancient, that have no use this patch, so Yes, I'm kind of mad, sorry for all the fucking fucks, but, it's hard to see this kind of thing after running the bot for 3 days only buying off hand on Kadala :/
 
yeah im still getting like 4 - 5 seconds of standing still trying to attack but not attacking after archon (with the above routine)
 
While you are here, the Item Ranking is broken, some items like the Chantodo Ancient are giving errors on the table and on the Demonbuddy shows some errors on Trinity and the plugin kind of crashes and restarts.
I talked about it yesterday when happened:

ItemRank is going to be removed, i would recommend you use ItemList, but you could also use ItemRules or Default Trinity Scoring.
 
ItemRank is going to be removed, i would recommend you use ItemList, but you could also use ItemRules or Default Trinity Scoring.
Okay, anything about the issue of not attacking after Archon ends ?
 
Okay, anything about the issue of not attacking after Archon ends ?

Unfortunately i don't have the chantodo weapon and swami yet to test this and archon is working fine for me without them so its a little difficult to debug :P

If the buff that stays from swami is the same as the normal archon buff that i was checking for then it makes sense it would stand there doing nothing, it thinks it still has access to the archon skills on the hotbar because the buff is still up. The version i just posted should work though because it removes that problem.

Possibly the hotbar cache refresh rate,

The wizardcombat you posted #3 attacks after archon ends?
 
Last edited:
Unfortunately i don't have the chantodo weapon and swami yet to test this and archon is working fine for me without them so its a little difficult to debug :P

If the buff that stays from swami is the same as the normal archon buff that i was checking for then it makes sense it would stand there doing nothing, it thinks it still has access to the archon skills on the hotbar because the buff is still up. The version i just posted should work though because it removes that problem.

The wizardcombat you posted #3 attacks after archon ends?

No, same problem, I just was using a custom with Ice Armor for priority buff, the one from last Trinity didn't use Magic Weapon and Ice Armor in the beginning of a Greater Rift.
The version you asked for test it's not fixing this issue (not attacking after Archon), where you will post the new one ?
Is there anything I can do to help ?

Update

I went to "Dump Skills" just after Archon ends:
Code:
[Trinity] Power=Wizard_Archon_ArcaneStrike_Lightning SkillName= Slot=HotbarMouseLeft DBRuneIndex=-1 ProperRuneIndex=-1 RuneName=None
[Trinity] Power=Wizard_Archon_DisintegrationWave_Lightning SkillName= Slot=HotbarMouseRight DBRuneIndex=-1 ProperRuneIndex=-1 RuneName=None
[Trinity] Power=Wizard_Archon_ArcaneBlast_Lightning SkillName= Slot=HotbarSlot1 DBRuneIndex=-1 ProperRuneIndex=-1 RuneName=None
[Trinity] Power=Wizard_Archon_SlowTime SkillName= Slot=HotbarSlot2 DBRuneIndex=-1 ProperRuneIndex=-1 RuneName=None
[Trinity] Power=Wizard_Archon_Teleport SkillName= Slot=HotbarSlot3 DBRuneIndex=-1 ProperRuneIndex=-1 RuneName=None

It's really thinking that it's still on Archon Mode, the same thing is happening with Epyphany on Monk, at least was happening in the previous version of Trinity.
And I don't think that the Swami is the problem, cause the buff from Swami lasts for 20 seconds, and the bot just don't use another skills for 3-4 seconds ~
 
Last edited:
it was happening for me on trinity 2.13.3 too before i got swami. cant comment on chantodo's role in it.
 
from the first 5 mins that looks to have solved the problem
 
xzjv:

You are correct in assuming the swami hat gives the same id for the archon buff, both in-archon and after-archon buffs are InternalName: Wizard_Archon SNOID: 134872

EDIT:

As a follow up, I made a smaller modification to check if archon is active that works around the Swami hat:

Code:
public static bool IsArchonActive()
{
      return (GetHasBuff(SNOPower.Wizard_Archon) && !Hotbar.Contains(SNOPower.Wizard_Archon)); ;
}

The main place i swapped out was in the GetCombatPower's archon test, I also added an immediate return if we get an ability power afterwards because if you're in archon, none of the rest of that function is usable for abilities so it's extra processing that's not needed.

Code:
TrinityPower power = null;
if (IsArchonActive())
{
     power = GetArchonPower();
     if (!IsNull(power)) // If this is no longer null, We are in archon form, and only have access to archon abilities, and we got an ability to use from our function. This is also swami-hat proof due to the above check
     {
           return power;
     }
}
 
Last edited:
I m using delrasha's (time lord) wizard and i m doing t10 and 45 grifts easy, the only problem is that there is difficulty with maintaining focus restraint buff, the bot will never use magic missile for some reason (or any signature spell for that matter). other than that, it s doing better than archon (paragon 560+), good gear in both specs)
 
Back
Top