View Single Post
04/13/15, 11:01 AM   #7
Ayantir
 
Ayantir's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 1,019
Yes this is a nice idea. maybe a little extension for swaps per exemple.

Lua Code:
  1. (preHook ToogleMount, function (...)
  2.  
  3.     if (inCyro)
  4.         if myActualBarIsSpeedOne() then
  5.             swaps.changeBuild(theOneWithSpeedBuff)
  6.         else
  7.             swapWeapons()
  8.             swaps.changeBuild(theOneWithSpeedBuff)
  9.         end
  10.     end
  11.    
  12. end)

We could do same with weapon siege and siege shield, per exemple.
  Reply With Quote