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] Path of Frost - DK Grind Helper

xsol

Member
Joined
Nov 7, 2011
Messages
503
Purpose: Maintain Path of Frost :confused:
Description: This simple plugin will maintain Path of Frost while not in combat to allow the DK to allows walk over water. I am using [N] Mining + Herb Farm in Valley of Four Winds - MASSIVE Yields :o and there is small section that runs across water; so, I decided I need to have Path of Frost to speed that bit up.

Instructions: Make a folder in your HonorBuddy/Plugins folder named PathOfFrost -> make a file PathOfFrostPlugin.cs -> paste the below code into the file.
Support: Not likely to happen, sort it out yourself; sorry, this is a real simple plugin no support should be needed. :mad:

File:
View attachment PathOfFrost.zip


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 PathOfFrost : HBPlugin
    {
        public override string Name { get { return "PathOfFrost"; } }
        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; } }
        public override string ButtonText { get { return "N/A"; } }

        private static LocalPlayer me = StyxWoW.Me;


        public PathOfFrost()
        {

        }


        public override void Pulse()
        {
            if (!StyxWoW.IsInGame)
            {
                return;
            }

            if (!me.Combat)
            {
                if (!me.Buffs.ContainsKey("Path of Frost"))
                {
                    SpellManager.Cast("Path of Frost");
                }
            }
        }


        public override void OnButtonPress()
        {

        }
    }
}
 

Attachments

Last edited:
could you please link your plugin?, cause i dont know how to generate a cs file. what would be very nice thx
 
could you please link your plugin?, cause i dont know how to generate a cs file. what would be very nice thx

make a text file and rename it to a .cs file; you will need to have show file extensions enabled

or you could copy paste another cs file and rename that and replace the text

but, I added a file, because I guess I am being nice today
 
Last edited:
Thanks for the share! Probably going fishingbot tonight :)
 
If i simply change PathofFrost to waterwalk will that do the trick?

yes, that would work for shaman, but you should make a new file and edit class name and the description text etc too
 
Love this pluggin, fucking useful including when you doing bgs!!!

Thanks ALOT bro!
 
Hmm. For me it is just spamming path of frost.
Guess Ill have to update it myself. :(
 
I will make a double post so mabe you can see the topic.

Using it in BGs will cause to spam Path of Frost like crazy. Is there any way to check if the buff is on and its not in combat before cast it?

Thanks alot once more!!!
 
I will make a double post so mabe you can see the topic.

Using it in BGs will cause to spam Path of Frost like crazy. Is there any way to check if the buff is on and its not in combat before cast it?

Thanks alot once more!!!

it already checks for combat, a dot will cause the spam, you chose to use it for something it was not developed to do

the easiest thing would be to delay the check to eliminate "spam"
 
How would I make this work for fishing? I Found the delay check line but am unsure what to replace it with.
 
Back
Top