I was wondering if anyone could advise on how to set up a manual switch to change between Battlefury Focus Speed and Battlefury Focus Precision, and that will preemp attacks with the toggled option.
Then its pretty easy to just make a toogle that switches the value of focusFury from 'focus speed' to 'focus precision' and back again. You can achieve that with a keybinding with a script like this:
if focusFury == nil or focusFury == "Focus Speed" then
focusFury = "Focus Precision"
cecho("PRECISE STRIKING INCOMING\n")
else
focusFury = "Focus Speed"
cecho("SPEEDY STRIKES INCOMING\n")
end
send("clearqueue all",false)
And you won't understand the cause of your grief...
No idea how efficient that is as I'm not a strong coder, but it does the job. I have others for different venoms other than curare, weapons (or Dragonform) etc.
Comments
rwCommand = "battlefury "..focusFury.."/"..limbAttack.." "..target.." "..tentativeLimbtarget.." "..venom..""
Then its pretty easy to just make a toogle that switches the value of focusFury from 'focus speed' to 'focus precision' and back again. You can achieve that with a keybinding with a script like this:
And you won't understand the cause of your grief...
...But you'll always follow the voices beneath.
Then, for example, one of my functions is this:
No idea how efficient that is as I'm not a strong coder, but it does the job. I have others for different venoms other than curare, weapons (or Dragonform) etc.
Hope that helps.