Page 2 of 2

Re: [ADDON] TurretRange 1.1

Posted: Mon Feb 25, 2019 9:38 pm
by Skullgrin
Wow, hadn't heard of this addon before. Makes me wonder if a version could be made that tracks your group mates with you at the center, showing the range of your auras/commands along with who you are guarding. Would make keeping your guard target in range so much easier...

Re: [ADDON] TurretRange 1.1

Posted: Sat Sep 26, 2020 7:46 am
by hulkhug
Movement arrow does not work if you use Back movement key. Any way of resolving that?

Re: [ADDON] TurretRange 1.1

Posted: Sat Sep 26, 2020 12:03 pm
by xruptor
Very cool addon. Didn't even realize this was a thing.

Re: [ADDON] TurretRange 1.1

Posted: Thu Jan 07, 2021 3:38 pm
by FrogenYozurt
Is there a way access the GUI for the addon and tweak settings? Currently it can desync slightly, causing the addons perception of the pets location to be incorrect.

My suggestion is to have an option to simply have an indicator that is green when in range and red when out of range. No need for positional tracker etc. You could also throw the range value in if you would like. While conceptually cool I currently find it to not really be functional at all as it desyncs causing you to lose stacks in the green kinda defeating the entire purpose.

Anyways, thanks for taking the time to work on the addon all the work you do is very much appreciated.

Re: [ADDON] TurretRange 1.1

Posted: Wed Jan 10, 2024 9:47 pm
by Ruin
Any chance we could have this updated to 50ft ? or is there an option to change settings?

Re: [ADDON] TurretRange 1.1

Posted: Fri Feb 02, 2024 5:57 pm
by Vraal
Yes, an update in desperately needed

Re: [ADDON] TurretRange 1.1

Posted: Fri Feb 02, 2024 9:59 pm
by Emissary
Just go into the core lua and change it from 25 to 45 on lines 286,287,288

Re: [ADDON] TurretRange 1.1

Posted: Fri Feb 02, 2024 10:23 pm
by Zxul
Emissary wrote: Fri Feb 02, 2024 9:59 pm Just go into the core lua and change it from 25 to 45 on lines 286,287,288
"- Unholy Empowerment - Range at which you build stacks increased from 25ft to 30ft, and range at which stacks drop off is increased from 25ft to 50ft."

else
TurretRange.Settings.Display.Graphic.Limit = 25
TurretRange.Settings.Distance[1].Distance = 25
TurretRange.Settings.Distance[2].Distance = 25

What is the 45 distance suppose to show?

Re: [ADDON] TurretRange 1.1

Posted: Sat Feb 03, 2024 2:01 am
by Emissary
they asked if it could be updated to 50ft since the addon uses the -5ft of the radius box instead of 50 you would put 45 ... i use guardpack so i could care less about the addon just telling them how to fix it
....
although actually testing it the range is off by +5 from center of turret so technically you can go out 55 on the addon and still be okay so the 3 should be changed to 50
Spoiler:

if SummonID == 8478 or SummonID == 1518 then
TurretRange.Settings.Display.Graphic.Limit = 56
TurretRange.Settings.Distance[1].Distance = 50
TurretRange.Settings.Distance[2].Distance = 30
else
TurretRange.Settings.Display.Graphic.Limit = 56
TurretRange.Settings.Distance[1].Distance = 50
TurretRange.Settings.Distance[2].Distance = 30
end
d("Pet summoned")
SummonPet = false
end

end