
Originally Posted by
shepardG
Apologies if this was recently addressed, or answered but got a couple questions
(also not at home, and working on mine(mote's) lua's at work is ... meh, less than ideal
1) Mote, how would i go about updating your SAM Lua, it seems to work, however, the key bind to use the " ` " key for meditate/seigan doesn't seem to be working (i believe i have your must updated includes, so not sure what's borking it up)
2) In Gearswap, I've ran into the scenario on a couple of jobs (Corsair mainly, but could see it useful for BLU), where I'm subbing a mage (COR/whm) and I'd like to Idle in 5/5 Wayfarer's for the refresh, Would i just setup a variable associated with the ones used with the F9 key? Something that could Cycle through potential Subs? and then just address the gearsets with the correct formating ?
Would casting modes work for this? I.e. Nomagic, WHM, RDM, and i could cycle the casting mode and have it change my idle set? what would the formating be for that? Sets.idle.castingmode=... ?
thanks in advance
1) Not sure what to tell you; works fine for me. Put in some debugging comments to see what it's trying to cast when you use the binds.
2) Add additional states in the classes.CustomIdleGroups list. For example, call the following code from user_setup() and sub_job_change():
Code:
classes.CustomIdleGroups:clear()
if player.sub_job == 'WHM' then
classes.CustomIdleGroups:append('Mage')
end
Would allow you to set up gear sets:
Code:
sets.idle.Field = {} -- non-mage subs
sets.idle.Field.Mage = {} -- mage subs