MMOMinion
[Module] Assister [V2] - Printable Version

+- MMOMinion (https://www.mmominion.com)
+-- Forum: FFXIVMinion (https://www.mmominion.com/forumdisplay.php?fid=87)
+--- Forum: [DOWNLOADS] Addons, Lua Modules, Navigation Meshes.. (https://www.mmominion.com/forumdisplay.php?fid=90)
+---- Forum: LUA Modules / Addons (https://www.mmominion.com/forumdisplay.php?fid=102)
+---- Thread: [Module] Assister [V2] (/showthread.php?tid=11791)

Pages: 1 2 3 4 5


RE: [Module] Assister [V2] - killagreenz27 - 05-03-2016

the monk profile is in but I cant seem to get it to display the moves that are going to be used


RE: [Module] Assister [V2] - killagreenz27 - 05-05-2016

at least give us the option to download the old one, this one is not working ><


RE: [Module] Assister [V2] - Darkvelvet - 05-30-2016

Anyway to add your own custom sound, like I want to use Text to Speech for calling out "Flank" "Back" instead of beep.


RE: [Module] Assister [V2] - Darkvelvet - 05-31-2016

Something is wrong with the Sounds option. IT always playing even when Uncheck! It get very annoying to used after awhile. Please fixed it.

Thank You!


RE: [Module] Assister [V2] - Alex - 06-18-2016

(05-31-2016, 06:58 PM)Darkvelvet Wrote:  Something is wrong with the Sounds option.  IT always playing even when Uncheck!  It get very annoying to used after awhile.  Please fixed it.

Thank You!

agree


RE: [Module] Assister [V2] - Alex - 06-18-2016

I made this change for both functions FlankAlert() and BackAlert() inside lua profile. Play sound ON/OFF now working for me.

FROM
Code:
function FlankAlert()
    if (Assister.flank) then
        for i = 1, 2 do
            GameHacks:PlaySound(39)
        end
        Assister.flank = false
        Assister.back = true
    end
end

function BackAlert()
    if (Assister.back) then
        for i = 1, 2 do
            GameHacks:PlaySound(47)
        end
        Assister.flank = true
        Assister.back = false
    end
end

TO
Code:
function FlankAlert()
    if (Settings.Assister.gAstPlaySounds == true and Assister.flank) then
        for i = 1, 2 do
            GameHacks:PlaySound(39)
        end
        Assister.flank = false
        Assister.back = true
    end
end

function BackAlert()
    if (Settings.Assister.gAstPlaySounds == true and Assister.back) then
        for i = 1, 2 do
            GameHacks:PlaySound(47)
        end
        Assister.flank = true
        Assister.back = false
    end
end



RE: [Module] Assister [V2] - Wonderland - 07-08-2016

Thanks for the fix Alex.


RE: [Module] Assister [V2] - xSalice - 09-07-2016

Do you guys know why assist will sometimes stop attacking and stand there until you can heal?


RE: [Module] Assister [V2] - rjabs2004 - 09-09-2016

Does this work with Pierce and if it does, could anyone explain how to set make it work?


RE: [Module] Assister [V2] - brocklesnar - 09-09-2016

simple answer is no it does not