MMOMinion

Full Version: [Module] Assister [V2]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5
the monk profile is in but I cant seem to get it to display the moves that are going to be used
at least give us the option to download the old one, this one is not working ><
Anyway to add your own custom sound, like I want to use Text to Speech for calling out "Flank" "Back" instead of beep.
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!
(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
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
Thanks for the fix Alex.
Do you guys know why assist will sometimes stop attacking and stand there until you can heal?
Does this work with Pierce and if it does, could anyone explain how to set make it work?
simple answer is no it does not
Pages: 1 2 3 4 5