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!

RebornBuddy - Limited Beta - FF14:ARR Bot

Status
Not open for further replies.
If you notice there no comma at the end, meaning it should be the last line. If its not the last line add the comma at the end :-)

ok that fixed it, however it doesnt use twin snakes at all...

protected override Composite CreateCombat()
{
return new PrioritySelector(
Apply("Touch of Death"),
Apply("Demolish"),
Apply("Twin Snakes", r => !Core.Player.HasAura("Twin Snakes"),r=> Core.Player),
Apply("Invigorate"),
Cast("Haymaker"),
Cast("Snap Punch", r => Core.Player.HasAura("Coeurl Form")),
Cast("True Strike", r => Core.Player.HasAura("Raptor Form")),
Cast("Bootshine", r => true)// r => Actionmanager.LastSpellId == 0 || Actionmanager.LastSpell.Name == "Full Thrust" )

);
}
}
}
 
Been using this for over a month now, purely amazing, just like anything from the BL team. Great work man, keep it up! Can't wait to see if you do a crafting bot.
 
ok that fixed it, however it doesnt use twin snakes at all...

protected override Composite CreateCombat()
{
return new PrioritySelector(
Apply("Touch of Death"),
Apply("Demolish"),
Apply("Twin Snakes", r => !Core.Player.HasAura("Twin Snakes"),r=> Core.Player),
Apply("Invigorate"),
Cast("Haymaker"),
Cast("Snap Punch", r => Core.Player.HasAura("Coeurl Form")),
Cast("True Strike", r => Core.Player.HasAura("Raptor Form")),
Cast("Bootshine", r => true)// r => Actionmanager.LastSpellId == 0 || Actionmanager.LastSpell.Name == "Full Thrust" )

);
}
}
}

Interesting, it does cast Twin Snake in the bot but never registers in the game...

Mashtag, could there be an issue with Twin Snakes ID? I attacked the log from the bot, I wish I knew how to attach battle logs from the game itself cause it will show that Twin Snakes is never called upon.

 
Interesting, it does cast Twin Snake in the bot but never registers in the game...

Mashtag, could there be an issue with Twin Snakes ID? I attacked the log from the bot, I wish I knew how to attach battle logs from the game itself cause it will show that Twin Snakes is never called upon.

Apply("Twin Snakes", r => !Core.Player.HasAura("Twin Snakes"),r=> Core.Player),

It's trying to use Twin Snakes on yourself. That's why it shows Applying in the Bot and nothing in the game; because it's not an on self skill. It works fine when I deleted the target or change it to core.target.


protected override Composite CreateCombat()
{
return new PrioritySelector(
Cast("Haymaker"),

Apply("Touch of Death"),

Apply("Demolish", r => Core.Player.HasAura("Coeurl Form")),
Cast("Snap Punch", r => Core.Player.HasAura("Coeurl Form")),

Cast("Twin Snakes", r => !Core.Player.HasAura("Twin Snakes") && Core.Player.HasAura("Raptor Form")),
Cast("True Strike", r => Core.Player.HasAura("Raptor Form")),

Cast("Bootshine", r => true)
);
}
}
 
Hey fredalbob, i am having an issue with your lancer/dragoon profile. No matter what position i am in, all it seems to do is apply buffs, apply fracture and continuously spam true thrust over and over.

EDIT: "Will now open with Heavy Thrust is available, else True Thrust" Heavy thrust doesnt seem to activate at all.. nor does impulse drive

On vacation currently.
Will take a look when I get back in a week or so.
 
Apply("Twin Snakes", r => !Core.Player.HasAura("Twin Snakes"),r=> Core.Player),

It's trying to use Twin Snakes on yourself. That's why it shows Applying in the Bot and nothing in the game; because it's not an on self skill. It works fine when I deleted the target or change it to core.target.

Thank you Nekoramen!!
 
I love your bot but a couple of suggestions:

Is it possible to put a max on gathering of an item suck as 99/99 and once it is reached to move to the next item on the list (i am somewhat of a min/maxing perfectionist :))
i am trying to farm the Ash Logs and for some reason instead of going around in a circuit it backtracks to the last node (which respawned) even though the next one is closer.
 
Version 0.1.25
Api:
HotkeyManager added, check raidbro for example usage.

BotBases:
Added IsAutonomous property
-For developers, override and set to true if using a bot that doesn't require user interaction.

Partymanager:
Fixed offsets

Radar:
Hotspots can now be added to waypoint profiles
Loading incorrect profile type will no longer crash the bot, it will simply act as if you clicked the correct button.

Raidbro:
Pause hotkey setting added, defaults to Shift+X

Gatherbot:
Fixed issue when no viable nodes were found.
-It was not choosing the farthest away node like it should have been.
Don't spam Higher Gathering Chance abilties

Kupo:
Always stop movement regardless of casttime of ability.
-FF14 Usually stops characters on their own if they ability is combat centric. In some rare cases it would not.

Don't cast spells if we are moving and using a player-assisted botbase
-This should you to move freely when using raidbot and not have to worry about it spinning you around and stuff.

http://mastahg.com/rebornbuddy/RebornBuddy0.1.25.zip
 
Seems the small patch rendered bots useless for the time being. Tried all the other bots I use and they won't work either.
 
[11:38:16.872 N] Logging in...
[11:38:17.941 N] We did it, yay!
[11:38:18.239 N] Current version is 0.1.25 Latest version is 0.1.25
[11:38:30.745 D] System.Exception: Process must have frozen or gotten out of sync: InjectionFinishedEvent was never fired
at GreyMagic.Executor.Execute(Int32 timeout)
at GreyMagic.Executor.Execute()
at ..()
at ff14bot.Managers.DataManager.()
at ff14bot.Managers.DataManager.Initialize()
at ff14bot.Core.Corze()
at ff14bot.App.Current_Startup(Object sender, StartupEventArgs e)
at System.Windows.Application.OnStartup(StartupEventArgs e)
at System.Windows.Application.<.ctor>b__1(Object unused)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.DispatcherOperation.InvokeImpl()
at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Windows.Threading.DispatcherOperation.Invoke()
at System.Windows.Threading.Dispatcher.ProcessQueue()
at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.Run()
at System.Windows.Application.RunDispatcher(Object ignore)
at System.Windows.Application.RunInternal(Window window)
at System.Windows.Application.Run(Window window)
at ff14bot.App.Main()
[11:38:30.743 D] System.Exception: Process must have frozen or gotten out of sync: InjectionFinishedEvent was never fired
at GreyMagic.Executor.Execute(Int32 timeout)
at GreyMagic.Executor.Execute()
at ..()
at ff14bot.Managers.DataManager.()
at ff14bot.Managers.DataManager.Initialize()
at ff14bot.Core.Corze()
at ff14bot.App.Current_Startup(Object sender, StartupEventArgs e)
at System.Windows.Application.OnStartup(StartupEventArgs e)
at System.Windows.Application.<.ctor>b__1(Object unused)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.DispatcherOperation.InvokeImpl()
at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Windows.Threading.DispatcherOperation.Invoke()
at System.Windows.Threading.Dispatcher.ProcessQueue()
at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.Run()
at System.Windows.Application.RunDispatcher(Object ignore)
at System.Windows.Application.RunInternal(Window window)
at System.Windows.Application.Run(Window window)
at ff14bot.App.Main()

Closing right after authenticating. am running as Admin.
 

Attachments

[11:38:16.872 N] Logging in...
[11:38:17.941 N] We did it, yay!
[11:38:18.239 N] Current version is 0.1.25 Latest version is 0.1.25
[11:38:30.745 D] System.Exception: Process must have frozen or gotten out of sync: InjectionFinishedEvent was never fired
at GreyMagic.Executor.Execute(Int32 timeout)
at GreyMagic.Executor.Execute()
at ..()
at ff14bot.Managers.DataManager.()
at ff14bot.Managers.DataManager.Initialize()
at ff14bot.Core.Corze()
at ff14bot.App.Current_Startup(Object sender, StartupEventArgs e)
at System.Windows.Application.OnStartup(StartupEventArgs e)
at System.Windows.Application.<.ctor>b__1(Object unused)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.DispatcherOperation.InvokeImpl()
at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Windows.Threading.DispatcherOperation.Invoke()
at System.Windows.Threading.Dispatcher.ProcessQueue()
at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.Run()
at System.Windows.Application.RunDispatcher(Object ignore)
at System.Windows.Application.RunInternal(Window window)
at System.Windows.Application.Run(Window window)
at ff14bot.App.Main()
[11:38:30.743 D] System.Exception: Process must have frozen or gotten out of sync: InjectionFinishedEvent was never fired
at GreyMagic.Executor.Execute(Int32 timeout)
at GreyMagic.Executor.Execute()
at ..()
at ff14bot.Managers.DataManager.()
at ff14bot.Managers.DataManager.Initialize()
at ff14bot.Core.Corze()
at ff14bot.App.Current_Startup(Object sender, StartupEventArgs e)
at System.Windows.Application.OnStartup(StartupEventArgs e)
at System.Windows.Application.<.ctor>b__1(Object unused)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.DispatcherOperation.InvokeImpl()
at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Windows.Threading.DispatcherOperation.Invoke()
at System.Windows.Threading.Dispatcher.ProcessQueue()
at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
at System.Windows.Threading.Dispatcher.Run()
at System.Windows.Application.RunDispatcher(Object ignore)
at System.Windows.Application.RunInternal(Window window)
at System.Windows.Application.Run(Window window)
at ff14bot.App.Main()

Closing right after authenticating. am running as Admin.

Probably because the maintenace may have blocked it. I guess we have to wait on an update.
 
Status
Not open for further replies.
Back
Top