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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

[Plugin] Water Walking - Shaman Helper

vanklif

New Member
Joined
Aug 16, 2012
Messages
2
[Plugin] Water Walking - Shaman Helper


1. This is my First Post(please be forgiving :D )
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
 
Last edited:
So you took the pathoffrost plugin and changed the spell ID to waterwalking?

I guess the shamen will thank you.
 
Very nice! I was wondering is there a way waterwalking for warlocks could be done for grindbot?
 
Back
Top