Is there a way to use Limit Break from a combat routine? Assuming we're not going into ground targeting for caster LB.
\ is the escape character in C#, so it allows you to put quotes in a string, as opposed to ending the string.
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.
That's not how injection works. Sendchat would be just as detectable as doaction. I'll look into adding some limit break stuff.