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

Mounting on leaders mount

daidza

New Member
Joined
Nov 18, 2012
Messages
15
Reaction score
0
Hi

I've been using multiboxing suite and i have a small request for you coders. I use bot for dual and triple boxing and i want my toons who are following the leader to enter his mount when bot detects that leader is mounting either sandstone drake, mcginner chopper or black war mamouth

anyway here's the code

if (!isMounting && RaFHelper.Leader.Mounted && !Me.Mounted && !Me.IsCasting && (!Me.IsInInstance || !Me.IsIndoors))
{
isMounting = true;
WoWMovement.MoveStop();
slog(RaFHelper.Leader.Name + " has mounted, mounting too. ");
Lua.DoString("RunMacro('Mount')");
StyxWoW.SleepForLagDuration();
//WoWPoint movePoint = WoWMathHelper.CalculatePointFrom(Me.Location, RaFHelper.Leader.WorldLocation, distance_to_follow);
//Navigator.MoveTo(movePoint);
WoWMovement.MoveStop();
Thread.Sleep(500);
isMounting = false;
}

whati want is that toon that is following instead Lua.DoString("RunMacro('Mount')"); just enter his chopper or sandstone drake or whatever like toon just double rightclicked the leader
 
Back
Top