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!

Limit Break

Azoth

Member
Joined
Mar 6, 2014
Messages
470
Is there a way to use Limit Break from a combat routine? Assuming we're not going into ground targeting for caster LB.
 
try ff14bot.Managers.ChatManager.SendChat("/gaction \"Limit Break\"");
 
Works awesome, thanks a lot.
For future reference, what does
Code:
\"
bracketing Limit Break do?
 
\ is the escape character in C#, so it allows you to put quotes in a string, as opposed to ending the string.
 
I see, thanks. Didn't think you'd need to have quotes inside of quotes.
 
I see, thanks. Didn't think you'd need to have quotes inside of quotes.

It's actually a limitation of the in-game /cast command, because Limit Break is two words, it needs to be surrounded by quotes.

For the record, each individual limit break has its own spell ID, and it should be cast using the Actionmanager.DoAction (or DoActionLocation) command along with its spell ID as opposed to sending a chat command in-game.
 
I'm curious why using the spellid is better than sendchat. Is it just for localisation? I've always preferred sendchat since if they ever put in any kind of injection detection, sendchat would be slightly stealthier since it would be seen as a user macro.
 
I'm curious why using the spellid is better than sendchat. Is it just for localisation? I've always preferred sendchat since if they ever put in any kind of injection detection, sendchat would be slightly stealthier since it would be seen as a user macro.

That's not how injection works. Sendchat would be just as detectable as doaction. I'll look into adding some limit break stuff.
 
Back
Top