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

KingWoW Shaman

Status
Not open for further replies.
So I just installed SVN (used the bot for a while without SVN). So I'm wondering if you need to have the SVN folder inside /Routines, or is it ok to load it from another directory?

Svn is included in zip file in first post. Intall as in first post and Just rigth click king-wow directory and choose svn update
 
Hey Attilio, was wondering if you implement it so it'll keep Flame Shock up on a target? due to the new Glyph of Flame Shock which heals you for 30% of it's damage done.
 
Been using this, and its a great CC! I updated the SVN today, but I am having issues of it not beginning to heal until its way to late, as in it wont attempt to heal anything until people are dead (if it wants to heal at all) Or I will have to get it started healing by acutally healing for a while manually. Been trying to use this with 5-mans and LFR.
 

Attachments

Been using this, and its a great CC! I updated the SVN today, but I am having issues of it not beginning to heal until its way to late, as in it wont attempt to heal anything until people are dead (if it wants to heal at all) Or I will have to get it started healing by acutally healing for a while manually. Been trying to use this with 5-mans and LFR.

TY!
It seems there is a problem casting some spell i will try to fix asap
 
hi
is it broken profile ? ??
is it going to be updated? Just wondering...
 
hi
is it broken profile ? ??
is it going to be updated? Just wondering...

ATM i'm not playng shaman so i dont know if CC works properly or not.
I'm updating and improving CC that i'm using and where people give me some feedback.
If people using KingWoW as shaman report i will fix or update.
 
hello
. .. I see him casting spell then like stop and dose not do riptide only for tank is there way to make it do it every time he cast 2 healing wave or healing s do 1 Riptide to lower HP member even if hp 99% to get the buff from it 20% haste ... and 30% crit for healing S ?
can he do Riptide person then chain healing on him to get buff better heal with chain healing ..?
 
hello
. .. I see him casting spell then like stop and dose not do riptide only for tank is there way to make it do it every time he cast 2 healing wave or healing s do 1 Riptide to lower HP member even if hp 99% to get the buff from it 20% haste ... and 30% crit for healing S ?
can he do Riptide person then chain healing on him to get buff better heal with chain healing ..?

Ty for your post.
I will examine code in order to fix and add this features.
 
Hello, is it possible to disable spell: Lava Lash because I'm lvling shaman with 2hander and everytime my bot is trying to use it in the battle ?
 
Hello, is it possible to disable spell: Lava Lash because I'm lvling shaman with 2hander and everytime my bot is trying to use it in the battle ?

enhancement IS 2W meele if i will do this i will introduce a little delay for LL cast and is not good for a dps class.
If you need it you can add this function in EnhancementShaman.cs:

Code:
private bool IsWieldingTwoHandedWeapon()
        {
            try
            {
                switch (Me.Inventory.Equipped.MainHand.ItemInfo.WeaponClass)
                {
                    case WoWItemWeaponClass.ExoticTwoHand:
                    case WoWItemWeaponClass.MaceTwoHand:
                    case WoWItemWeaponClass.AxeTwoHand:
                    case WoWItemWeaponClass.SwordTwoHand:
                        return true;
                }
                return false;
            }
            catch (Exception ex)
            {
                utils.LogActivity("IsWieldingBigWeapon ", ex.ToString());
            }

            return false;
        }
and modify line:

Code:
if (target.IsWithinMeleeRange && utils.isAuraActive(FLAME_SHOCK, target) && utils.GetSpellCooldown(LAVA_LASH).Milliseconds <= StyxWoW.WoWClient.Latency)
                {
                    utils.LogActivity(LAVA_LASH, target.Name);
                    return utils.Cast(LAVA_LASH, target);
                }

with:


Code:
if (!IsWieldingTwoHandedWeapon() && target.IsWithinMeleeRange && utils.isAuraActive(FLAME_SHOCK, target) && utils.GetSpellCooldown(LAVA_LASH).Milliseconds <= StyxWoW.WoWClient.Latency)
                {
                    utils.LogActivity(LAVA_LASH, target.Name);
                    return utils.Cast(LAVA_LASH, target);
                }
 
SVN UPDATE:

New LoadConfig and SaveNewConfig Settings utility, the Save current settings was not modified.
configuration path changed in "KingWOWCurrentSettings" so customclass folder in honorbuddy can be deleted.

ALL class:
disabled Pause rotation: you can use basebot pause hotkey.

ALL healing class:
Added hotkey to disable AOE healing (an ingame notification tell you id aoe enabled or disabled)

Discipline priest:
Can enable autocastSpiritShell when PRAYER_OF_HEALING needed in GUI (default disabled).
Everyone can post his config file on forum and share with community.

ATM NO xml configuration file in directory so create your own!
 
Hi Attilio,
A couple of things you would like to add to this shaman routine:
1) Cast Riptide ONLY for Tidal Waves Buff. Riptide itself is no big deal, it is used just for buffs. So, basically it will be something like "IF NO TIDAL WAVES BUFF ON THE SHAMAN, CAST RIPTIDE ON THE LOWEST HEALTH PLAYER". You can add a new setting: "Cast Riptide for Tidal Waves Only".
2) Add a New "OH SHIT HEAL". -> UNLEASH ELEMENTS + ANCESTRAL SWIFTNESS + GREATER HEALING WAVE. (instant BIIIIIG HEAL). You just need to cast these three spells at certain threshold. You can also add a setting for this one in the user interface. You also should add another setting: "Oh Shit Heal only for Tank".
Thank you very much for your effort. The routine is quite good. I can suggest a few other improvements and even help you with the code if you're interested. Please let me know.
 
Hi Attilio,
A couple of things you would like to add to this shaman routine:
1) Cast Riptide ONLY for Tidal Waves Buff. Riptide itself is no big deal, it is used just for buffs. So, basically it will be something like "IF NO TIDAL WAVES BUFF ON THE SHAMAN, CAST RIPTIDE ON THE LOWEST HEALTH PLAYER". You can add a new setting: "Cast Riptide for Tidal Waves Only".
2) Add a New "OH SHIT HEAL". -> UNLEASH ELEMENTS + ANCESTRAL SWIFTNESS + GREATER HEALING WAVE. (instant BIIIIIG HEAL). You just need to cast these three spells at certain threshold. You can also add a setting for this one in the user interface. You also should add another setting: "Oh Shit Heal only for Tank".
Thank you very much for your effort. The routine is quite good. I can suggest a few other improvements and even help you with the code if you're interested. Please let me know.

Sorry for late response i was busy in mage and priest CC.
I will modify resto cc asap.
 
Just a comment about the "lag" issue that came about recently with Resto not starting to heal unless manually started, or starting just as the tanks dying are the EXACT same issues Singular started having at the same time. I SVN'd KingWoW specifically because of this actually;-). I will dick with the Spirit Walkers Grace in KingWoW, and if possible look at Singular for a fix recommendation to pass on as well.
 
Status
Not open for further replies.
Back
Top