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!

[Bot] Feathers - Autocast Angelic Feather at your location!

Unimatrix

New Member
Joined
May 6, 2013
Messages
103
Hello

This bot is for Priests only because it will make use of the Tier2 talent called Angelic Feather.
You can however modify this to your own needs, its super easy.

How to set it up:
- unzip it into your bots folder (this is how it should look -> Honorbuddy\Bots\Feathers\Feathers.cs)
- disable all plugins (just to make sure), select the Feathers bot and start Honorbuddy
- in game make this macro:
Code:
#showtooltip Angelic Feather
/script castFeathers =1;

Now whenever you press the key for your macro it will place a feather at your location effectively skipping having to click for the location yourself
Enjoy ;-)
 

Attachments

Change line 41 to
Code:
SpellManager.ClickRemoteLocation(StyxWoW.Me.CurrentTarget.Location);
I think that should do it
 
Could i have two binds, one for my location, and one for my target? ty
 
Sure, replace the pulse function with this one
Code:
        public override void Pulse() {
			if (castFeathers == 0)
				return;

			SpellManager.Cast("Angelic Feather");

			if (castFeathers == 1)
				SpellManager.ClickRemoteLocation(StyxWoW.Me.Location);
			else if (castFeathers == 2)
				SpellManager.ClickRemoteLocation(StyxWoW.Me.CurrentTarget.Location);

			Lua.DoString(@"print('[Feathers]\124cFF15E61C Activated!')");			
			Lua.DoString("SpellStopTargeting(); castFeathers = 0;");
			castFeathers = 0;
        }

And then have 1 macro for your location which will be
Code:
#showtooltip Angelic Feather
/script castFeathers = 1;

And another macro for your target which will be
Code:
#showtooltip Angelic Feather
/script castFeathers = 2;
 
I know I'm a pain, but wouldn't this be better as a plugin?

Sure, you can re-write it as a plugin because I don't quite know how yet :)
But if you use Tyrael that will disable every plugin and combat routines such as Oracle already automatically activate feathers in combat while moving.
 
I want to use it out of combat and while some CR's do allow that some (Like Oracle) don't.

I couldn't re write it, that's for way smarter people than I. I don't even know how u did what u did :p
 
How "Unsafe" is this in practice and possibility? I'm not familiar with the /script part of wow macros, but I can only assume they can easily be tracked by Blizzard, so at the very least I would be making the macro line unique to myself, but it still seems sketch.
 
Just tell your wow client to not sync macros with the server. Also I was wondering if you could add in a Mass Dispel on target?
 
So will this work with hunters Binding Shot? (on target)

EDIT: I don't know the complexities of what I'm asking, so sorry if I'm asking too much.
Is there a way to set this up so binding shot auto shoots on mouseover target and if I don't have a mouseover it shoots on my target?
 
Last edited:
Back
Top