05-03-2016, 03:20 AM
05-05-2016, 10:21 AM
at least give us the option to download the old one, this one is not working ><
05-30-2016, 03:03 PM
Anyway to add your own custom sound, like I want to use Text to Speech for calling out "Flank" "Back" instead of beep.
05-31-2016, 06:58 PM
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!
Thank You!
06-18-2016, 10:33 PM
(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
06-18-2016, 11:09 PM
I made this change for both functions FlankAlert() and BackAlert() inside lua profile. Play sound ON/OFF now working for me.
FROM
TO
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
07-08-2016, 07:14 AM
Thanks for the fix Alex.
09-07-2016, 03:02 AM
Do you guys know why assist will sometimes stop attacking and stand there until you can heal?
09-09-2016, 03:58 AM
Does this work with Pierce and if it does, could anyone explain how to set make it work?
09-09-2016, 08:46 AM
simple answer is no it does not