LUA - Possible Quickdraw Mode?

Language: JP EN DE FR
New Items
2023-11-19
users online
Forum » FFXI » Jobs » Corsair » LUA - Possible Quickdraw Mode?
LUA - Possible Quickdraw Mode?
Offline
Posts: 281
By Galkapryme 2023-10-15 10:03:08
Link | Quote | Reply
 
Looking to add a QuickdrawMode to the COR LUA. I'd like to toggle between one mode for damage, and one mode for TP. Anyone know if this is possible?

Using Sel's LUA.
Offline
Posts: 402
By drakefs 2023-10-15 11:01:10
Link | Quote | Reply
 
There are 3+2 QD modes in sel's lua but I am not sure that they work properly. To set damage mode, the logic is checking state.CastingMode.value for "Fodder" but said state does not have a "Fodder" option.

Try this:

  • use sets.precast.CorsairShot as your TP set

  • use sets.precast.CorsairShot.Damage as your damage set

  • change the options of state.CastingMode (see below)



change
Code
state.CastingMode:options('Normal', 'Resistant')

to
Code
state.CastingMode:options('Normal', 'Fodder')


This will not work for light\dark shot unless you modify the post precast in the cor.lua. If you do so you will also need to change the equip sets of light\dark shots to only be the items that differ from your normal corsair shots.
Log in to post.