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][Request] Dismount

Ahdcrazy

New Member
Joined
Jul 26, 2012
Messages
80
Hey, I'm trying to farm herbs and mining while using grind bot but it seems when hes in combat he just ignore everything and keep moving to hotspots.
Looking for a plugin that just dismount when he is in combat.
That will Increase xp/hr and nodes/hr

Thanks :D
 
What about this ?

using Styx;
using Styx.Common;
using Styx.Common.Helpers;
using Styx.MemoryManagement;
using Styx.Plugins;
using Styx.WoWInternals;
using Styx.WoWInternals.WoWObjects;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Media;
using System.Text;
using System.Threading.Tasks;

namespace Dismount

if (Me.Mounted)
Me.Combat("Dismount()");
 
Put this if me.incombat && me.ismounted then dismount in the pulse overwrite of you plugin.
Do we even take "requests" here? Donate me 10 bucks, I'll code you this in five minutes. Or do it yourself...
 
Hey, I'm trying to farm herbs and mining while using grind bot but it seems when hes in combat he just ignore everything and keep moving to hotspots.
Looking for a plugin that just dismount when he is in combat.
That will Increase xp/hr and nodes/hr

Thanks :D

Sure you have set in the bot config (advanced mode) that he need to herb and mine + the radius ?
 
Yup I got them ticked, he farms very well except when he gets in combat he just walk and ignore everything need something to dismount him
 
you dont need a plugin, you just need to turn on Kill between hotspots, its in the bot config.
 
you dont need a plugin, you just need to turn on Kill between hotspots, its in the bot config.

I turned them on but still he just ignore mobs and nodes, When I read the threads about this issue seems like many people having this problem I think it's known issue.
 
same problem here
sometimes bot ignores mobs between hotspots and just ride
"kill mobs between hotspots" is on
 
wrote little plugin to fix this behaviour
Place this one to Plugins\Dismounter\Dismounter.cs

Code:
using System;
using Styx.CommonBot;
using Styx.WoWInternals.WoWObjects;
using Styx.Plugins;

namespace Dismounter
{
	public class Dismounter : HBPlugin
	{
		public override string Name
        {
            get { return "Dismounter"; }
        }

        public override string Author
        {
            get { return "undefined"; }
        }

        public override Version Version
        {
            get { return new Version(1, 0, 0); }
        }

        public LocalPlayer Me
        {
            get { return Styx.StyxWoW.Me; }
        }
		public override void Pulse()
		{
			if(Me.Combat && Me.Mounted) { 
				Mount.Dismount();
			}
		}
	}
}
 
Thanks alot man! You're a genius! helped me alot saving shitload of nodes from wasting :)
 
Back
Top