
Originally Posted by
Khelek
can't see that I was using either of those commands anywhere. I have some pet stuff in there though. I was hoping that the universal timer you speak of was editable somehow. Here's the .lua I was using:
......
no the timer is not editable because its hard-coded in gearswap this is a stop gap measure to fix the issue with midaction() and pet_midaction() blocking some people from ever casting spells after casting certain spells
the best way i can think of fixing this would be to add a timer to all items that might need it but that would be hard because someone would have to manualy edit each and every item because only items like potions have timer values in the ffxi files
and you are using it right here
Code:
function precast(spell)
if midaction() then
cancel_spell()
return
you could try this in your aftercast
Code:
if spell.name:endswith(" Key") or spell.name:endswith("カギ") then
midaction(false)
end
if it works please let me know