MMOMinion

Full Version: PVP duty queue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Since the update the requeue time for pvp seems faster than before. I always get the "unable to execute command while occupied." or "Consciousness is required to participate in this duty." Cause my screen is still loading or recover from death. Is there anyway to make the requeue wait time longer?
Is anyone has the pvp requeue issue after death or any solution?
Could be your pc performance. Go ffxiv_task_pvp.lua


function e_joinqueuepvp:execute()
if not ControlVisible("ContentsFinder") then
ActionList:Cast(33,0,10)
ml_task_hub:CurrentTask().windowTimer = ml_global_information.Now
elseif (TimeSince(ml_task_hub:CurrentTask().windowTimer) > math.random(4000,5000)) then
PressDutyJoin()
ml_task_hub:CurrentTask().state = "WAITING_FOR_DUTY"
end
end



Edit 4000,5000 to 10000,12000 to give you extra 5-7 secs before clicking join button again
Thanks for the help.