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

[Fix] Magic Weapon and Ice Armor for Archon

Hitsuomy

Member
Joined
Feb 2, 2013
Messages
137
Reaction score
0
[Fix] Magic Weapon and Ice Armor for Archon + Chantodo 20

Well, this will make your Wizz always re-buff Magic Weapon and Ice Armor before using Archon again, when enters a Great Rift, and when revives, I implemented the Chantodo Stack Count in another version, if you have the gear to survive without needing to go to Archon as fast as possible, use the Chantodo Version, if not, use the version without it, for now my Wizz is doing speed GR 40-42 for exp Farm (about 5.8B hour).

PS. DON'T USE ITEM RANKING FOR WIZZ, SOME ITENS ARE BREAKING THE TABLE (LIKE CHANTODO ANCIENT)


Here is how add the Chantodo Stack Count:
https://www.thebuddyforum.com/demon...nfo-getting-chantodo-vyr-archon-tutorial.html

My WizardCombat WITHOUT Chantodo Stack Count (My gear is not optimized, sometimes I need to use Archon to survive)
The location of your is : db\Plugins\Trinity\Combat\Abilities\WizardCombat.cs
View attachment WizardCombat.cs

My WizardCombat WITH Chantodo Stack Count:
The location of your is : db\Plugins\Trinity\Combat\Abilities\WizardCombat.cs
View attachment WizardCombat.cs

Best configuration on Trinity above, it's better for disable the Desintegration, hitting and spamming blast you will be able to gather more Archon Stacks (I usually have always 80-120 for Archon use), and the Range for Archon needs to be at least 41, cause Trinity uses some spells in 40 range, so, you should be able to cast Archon even if it's casting at 40 distance blocks.
oJw45xh.jpg



Now, the codes:
Magic Weapon before:
Code:
            // Magic Weapon (10 minutes)                 
            if (!Player.IsIncapacitated && Player.PrimaryResource >= 25 && CanCast(SNOPower.Wizard_MagicWeapon) && !GetHasBuff(SNOPower.Wizard_MagicWeapon))
            {
                return new TrinityPower(SNOPower.Wizard_MagicWeapon);
            }

Magic Weapon re-buff:
Code:
            // Magic Weapon (10 minutes)                 
            if (!Player.IsIncapacitated && Player.PrimaryResource >= 25)
            {
 		if (Hotbar.Contains(SNOPower.Wizard_MagicWeapon))
                {
                    if ((!GetHasBuff(SNOPower.Wizard_MagicWeapon) && CanCast(SNOPower.Wizard_MagicWeapon)) || (Hotbar.Contains(SNOPower.Wizard_Archon) && (!GetHasBuff(SNOPower.Wizard_MagicWeapon) || SNOPowerUseTimer(SNOPower.Wizard_MagicWeapon))))
                    {
                        return new TrinityPower(SNOPower.Wizard_MagicWeapon);
                    }
                }

            }

Ice Armor Before:
Code:
                // Ice Armor
                else if (Hotbar.Contains(SNOPower.Wizard_IceArmor))
                {
                    if (!GetHasBuff(SNOPower.Wizard_IceArmor) && CanCast(SNOPower.Wizard_IceArmor))
                    {
                        return new TrinityPower(SNOPower.Wizard_IceArmor);
                    }
                }

Ice Armor re-buff:
Code:
                // Ice Armor
                else if (Hotbar.Contains(SNOPower.Wizard_IceArmor))
                {
                    if ((!GetHasBuff(SNOPower.Wizard_IceArmor) && CanCast(SNOPower.Wizard_IceArmor)) || (Hotbar.Contains(SNOPower.Wizard_IceArmor) && (!GetHasBuff(SNOPower.Wizard_IceArmor) || SNOPowerUseTimer(SNOPower.Wizard_IceArmor))))
                    {
                        return new TrinityPower(SNOPower.Wizard_IceArmor);
                    }
                }


Here is my Build:
Based on: http://www.diablofans.com/builds/57538-quin69-gr66-vyrs-archon-wizard

Using now rune "Improved Archon" instead of "Pure Power"

qcfRBXF.jpg


Cube:

x4u9xIe.jpg
 
Last edited:
Could you link your Wizard.CS _WITH_ the chantodo buff activated? My sorc has pretty good gear so she's stacking alot of CDR, makes the bot only get around 10 stacks of chantodo before going in.
I'm quite illiterate when it comes to editing stuff, so if you could include that I would be forever grateful. (Using your current setup to rebuff armor+force)
 
Could you link your Wizard.CS _WITH_ the chantodo buff activated? My sorc has pretty good gear so she's stacking alot of CDR, makes the bot only get around 10 stacks of chantodo before going in.
I'm quite illiterate when it comes to editing stuff, so if you could include that I would be forever grateful. (Using your current setup to rebuff armor+force)
K, I updated the last one (from the another topic) with the armor re-buff (this topic), I will post a version with Chantodo Stack Count, as soon as my Wizz finishes this GR I'll test.

Update
Okay, everything working now, Chantodo Stacks version added, works like a charm, suggested build and configuration also added.
 
Last edited:
Thank you, you are a god!
Now, if we can only get Trinity to stop stuttering after leaving a form-changing spell such as epiphany and Archon and I'd actually be able to do 55+ GR's!
 
Thank you, you are a god!
Now, if we can only get Trinity to stop stuttering after leaving a form-changing spell such as epiphany and Archon and I'd actually be able to do 55+ GR's!
Yeah, this is kind of weird, I'm reading the codes and trying to do something, but I don't know anything about programming, I just used logic to read the commands and make a priority for both buffs, trying to find the file that makes the initial spell check to use after using such transformations like Archon or Epiphany, nothing until now ~
 
Yeah, this is kind of weird, I'm reading the codes and trying to do something, but I don't know anything about programming, I just used logic to read the commands and make a priority for both buffs, trying to find the file that makes the initial spell check to use after using such transformations like Archon or Epiphany, nothing until now ~
Wow, you're hard at work!
I for one really appreciate it!

Also, do you have an itemlist that you use for wizards? Tired of having to clean my stash every few hours :P
 
Wow, you're hard at work!
I for one really appreciate it!

Also, do you have an itemlist that you use for wizards? Tired of having to clean my stash every few hours :P

It's on To Do list, for now I'm trying to fix this thing about being 2-3 sec doing nothing, I lost one or two GR timings because of this, it's pretty annoying.
 
It's on To Do list, for now I'm trying to fix this thing about being 2-3 sec doing nothing, I lost one or two GR timings because of this, it's pretty annoying.
It really is. If you need any help with testing stuff, just let me know!
 
Was doing the Item List for the Wizz but there aren't all itens of Vyr's set and some new items, don't know what will happen if the bot loots one of them and it's not on the item list, for now, waiting for the update ~
 
If it finds an unknown itemID item or itemID 0 it will autostash the item
 
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 :/
 
Last edited:
Just wanted to say thanks! I really appreciate you taking the time to post it for others to use.
 
Back
Top