i was going to Dev Solar beam soon, just atm in process of actually coding my "own" bg bot. will be alot more advanced than "bg bot [BETA]"
its slow atm but slowly getting there. alot of logic is going in
i have actually made a post asking the if i can possibly override the "dismount" function, atm thats the way honor buddy dismounts unfortantly. which is out of my control. i have actually TRIED, its actually coded. to jump dismount
Code:
private static void CheckForm()
{
if (Me.IsCasting) return;
if (Me.Shapeshift == Styx.ShapeshiftForm.Moonkin) return;
WoWMovement.Move(WoWMovement.MovementDirection.JumpAscend, TimeSpan.FromSeconds(1));
SpellManager.Cast("Moonkin Form");
WoWMovement.MoveStop();
}
#region CombatBuff
public override bool NeedCombatBuffs
{
get
{
if (Me.IsCasting) return false;
if (Me.Shapeshift != Styx.ShapeshiftForm.Normal) return false;
if (Me.Shapeshift == Styx.ShapeshiftForm.Moonkin) return false;
return true;
}
}
public override void CombatBuff()
{
CheckForm();
}
#endregion