• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • [Plugin] Water Walking - Shaman Helper

    Discussion in 'Movement' started by vanklif, Nov 25, 2012.

    1. vanklif

      vanklif New Member

      Joined:
      Aug 16, 2012
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      0
      [Plugin] Water Walking - Shaman Helper
      [HR][/HR]

      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: Nov 27, 2012
    2. Macatho

      Macatho New Member

      Joined:
      Dec 3, 2011
      Messages:
      1,108
      Likes Received:
      18
      Trophy Points:
      0
      So you took the pathoffrost plugin and changed the spell ID to waterwalking?

      I guess the shamen will thank you.
       
    3. Lexs

      Lexs New Member

      Joined:
      Dec 15, 2012
      Messages:
      1
      Likes Received:
      0
      Trophy Points:
      0
      Very nice! I was wondering is there a way waterwalking for warlocks could be done for grindbot?
       
    4. izuall69

      izuall69 New Member

      Joined:
      Oct 9, 2012
      Messages:
      9
      Likes Received:
      0
      Trophy Points:
      1
      and priest
       

    Share This Page