[Plugin] Water Walking - Shaman Helper [HR][/HR] 1. This is my First Post(please be forgiving ) 2. This is a modified version of [Plugin] Path of Frost - DK Grind Helper (http://www.thebuddyforum.com/honorb.../72039-plugin-path-frost-dk-grind-helper.html) 3. My native language is German not English, so please forgive me if I make any mistakes. I just thought about a plugin for Shamans that would automatically use "Water Walking" for farming, etc. So I modified the PathOfFrost Plugin and it worked for me. Since this is my first Plugin I am thankfull for every review. For installation, just extract it into your Plugin folder. Code: using System; using System.Collections.Generic; using System.Text; using System.Windows.Media; using Styx; using Styx.Common; using Styx.CommonBot; using Styx.Plugins; using Styx.WoWInternals; using Styx.WoWInternals.WoWObjects; namespace XSOL { class WaterWalking : HBPlugin { public override string Name { get { return "Water Walking"; } } public override string Author { get { return "xsol"; } } public override Version Version { get { return new Version(1, 0, 0, 0); } } public override bool WantButton { get { return true; } } private static LocalPlayer me = StyxWoW.Me; public override void Pulse() { if (!StyxWoW.IsInGame) { return; } if (!me.Combat) { if ((!me.Buffs.ContainsKey("Water Walking")) && (!StyxWoW.Me.HasAura("Water Walking"))) { SpellManager.Cast("Water Walking"); } } } public override void Dispose() { base.Dispose(); } } } Plugin: View attachment WaterWalking.zip
So you took the pathoffrost plugin and changed the spell ID to waterwalking? I guess the shamen will thank you.