Download
(187Kb)
Download
Updated: 02-25-15 12:03 AM
Pictures
File Info
Compatibility:
The Adventure Continues (6.1)
Updated:02-25-15 12:03 AM
Created:06-06-09 05:00 PM
Downloads:123,375
Favorites:246
MD5:

FaceShooter  Popular! (More than 5000 hits)

Version: 1.3.1
by: Crowfeather, Celetaras

FaceShooter is a shot recommendation addon for hunters.

Based on your resources like cooldowns and focus it tries to recommend which spell should be cast next.
It is a complete strip back to basics of the former version of FaceShooter, with the new and changed features developed from there.

1.3.1 - 25 Feb 2015
Simple version number change for 6.1

1.3.0 - 24 Feb 2015
Cooldown Sprial Returns!
Altered Black Arrow cooldown from 30sec to 24sec due to 6.1 changes
Coding for Barrage now properly handles the channeled spell
Still aware of issues regarding Explosive shot occasionally 'sticking' due to Lock and Load

1.2.9 - 14 Feb 2015
Faceshooter should now work when mounted on a Telaari Talbuk or a Frostwolf War Wolf

1.2.8 - 14 Feb 2015
Re-packaged zip file. No code change

1.2.8 - 11 Feb 2015
Serpent Sting is now explicitly checked for and Arcane Shot is suggested when it is about to fall off
Issue resolved when Cobra Shot still suggested occasionally when Focusing Shot talent is selected.
Horde should now be able to use Faceshooter while riding a Frostwolf War wolf. I don't have a Horde char so please test and let me know.
Survival focus dump now changed to Arcane Shot

Still an issue is the glitch where Explosive shot gets stuck. It's reproducible but still investigating the root cause.

1.2.7 - 14 Dec 2014
FaceShooter will correctly disable itself if not a Hunter or lower than level 90
Kill Shot now improved. You must however have one of the following on your Action Bars:
- The Kill Shot spell, ie dragged from the spell book to your Action Bars
- A Kill Shot macro with the exact Kill Shot icon
If neither of these are on your Action Bars, Kill Shot is disabled and not recommended by FaceShooter

1.2.6 - 30 Nov 2014
Fix for Kill Shot on BM spec (Incorrectly applied MM Draenor perk)
Focus Fire / Frenzy proc now recognized and suggested in shot recommendations
Faceshooter will work if riding a Telaari Tabuk
Focusing shot partially implemented but still under development and test - Use with caution

1.2.5 - 18 Nov 2014
Bug fix for focus calculation errors for SV and BM spec

1.2.4 - 16 Nov 2014
Added Dreanor Perks:
-Max focus increased by 20
-Kill Shot works on targets < 35% health
Known issues to be resolved:
-Does not recognise when Kill Shot resets its CD if the target does not die from it.
-Faceshooter does not check specifically for which Dreanor Perks are active, so only enables them when your level is 98 or greater.

1.2.3 - 7 Nov 2014
Bug fix for a specific situation which resulted in Aimed Shot never being recommended during Careful Aim phase

1.2.2 - 5 Nov 2014
- Careful Aim now implemented for Marksman, Prioritizes Steady and Aimed Shots when Target health > 80% or when Rapid Fire is active. Can be enabled / disabled / enabled for boss level targets
- Now accounts for lowered shot costs when Bestial Wrath is active
- Still to come: Steady Focus and Frenzy

1.2.1
- Fix for Barrage
- Barrage option now enable by default
- Now correctly identifies friendly units

1.2.0
-No changed code at all. Just repackaged as a zip not rar

1.2.0
- Removed: Hunters Mark, Lynx Rush, All T13 and T14 set bonuses, Lynx Rush & Serpent Sting (Now Passive), Aimed Shot breakpoints, Master Marksman etc.
-Amended/Updated: Lots...
Still under development:
- Careful aim not implemented yet
- Steady Focus not ready for release
- Frenzy / Focus fire mechanism not implemented yet
- No level 90+ features implemented yet (Dreanor perks, Focusing shot etc)
- Shot rotation still not as accurate as I'd like, seems to delay signature shot a bit too much, sometimes suggests Steady/Cobra shots a bit too much
Optional Files (2)
File Name
Version
Size
Author
Date
Type
5.4.3
133kB
02-14-14 01:21 AM
Addon
5.3
15kB
05-25-13 10:49 PM
Patch


Post A Reply Comment Options
Unread 11-05-14, 12:45 PM  
Kramarz
A Kobold Labourer

Forum posts: 0
File comments: 194
Uploads: 0
1.2.2 - 5 Nov 2014
- Careful Aim now implemented for Marksman, Prioritizes Steady and Aimed Shots when Target health > 80% or when Rapid Fire is active. Can be enabled / disabled / enabled for boss level targets
- Now accounts for lowered shot costs when Bestial Wrath is active
- Still to come: Steady Focus and Frenzy
Don't see any options for it, should they be there yet or? :-)
Report comment to moderator  
Reply With Quote
Unread 11-01-14, 02:14 AM  
Reddy
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
Yes my bad. I still play around with the old (1.1.2) version.

It wasn't meant as a general fix for everyone to apply. Just wanted to point you towards a possible fix...
Last edited by Reddy : 11-01-14 at 02:16 AM.
Report comment to moderator  
Reply With Quote
Unread 10-30-14, 09:50 PM  
Celetaras
A Kobold Labourer

Forum posts: 0
File comments: 14
Uploads: 0
Thanks Reddy, This is close but the focus costs are now part of resources, so the code is:
Lua Code:
  1. elseif self:CheckAS((self.cost["KC"] + self.cost["BRG"] - self:RegTilRdy("KC"))) then

Additionally, if you haven't selected the Barrage talent, it will still pool the focus.
I'll get a fix out soon.
Last edited by Celetaras : 10-30-14 at 09:50 PM.
Report comment to moderator  
Reply With Quote
Unread 10-30-14, 12:28 PM  
Miniace
A Kobold Labourer

Forum posts: 0
File comments: 9
Uploads: 0
Barrage still not working, but Glaive Toss is working fine.
Last edited by Miniace : 10-30-14 at 12:28 PM.
Report comment to moderator  
Reply With Quote
Unread 10-30-14, 10:02 AM  
Reddy
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
You can do something like (for example BM)
Lua Code:
  1. ...
  2. -- Arcane Shot
  3. elseif self:CheckAS((FS.cost["KC"] + FS.cost["BRG"] - self:RegTilRdy("KC"))) then
  4.      spell = FS.spellID["AS"]
  5. ...
to make FaceShooter pool enough focus to cast Barrage before picking Arcane Shot...
Report comment to moderator  
Reply With Quote
Unread 10-30-14, 02:00 AM  
Celetaras
A Kobold Labourer

Forum posts: 0
File comments: 14
Uploads: 0
A quick update on the Barrage issue. It's not a quick fix and will require some thought. I'll keep you posted...
Report comment to moderator  
Reply With Quote
Unread 10-30-14, 01:55 AM  
Celetaras
A Kobold Labourer

Forum posts: 0
File comments: 14
Uploads: 0
Originally Posted by Ved
Not sure what I am doing wrong, but I have problems downloading the latest update. Previously I had to extract the actual file and place it in my wow addon folder, this option is not available with this version. If somebody could point me in the right direction, that would be great ty And ty so much Celetaras for keeping this addon alive !
Basic mistake on my part, It's now a regular zip file
Report comment to moderator  
Reply With Quote
Unread 10-29-14, 01:56 PM  
spookychick13
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
Thank you thank you thank you for keeping this add on alive and updated. It is so very appreciated.
Report comment to moderator  
Reply With Quote
Unread 10-29-14, 10:34 AM  
Reddy
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
What bugs me: You completely discarded all "The Beast Within" functionality (50% focus discount). But it has been merged with "Bestial Wrath"...

Not the only change that confuses me... No offense. Glad you keep this project alive.
Report comment to moderator  
Reply With Quote
Unread 10-29-14, 09:39 AM  
Miamoto
A Kobold Labourer

Forum posts: 0
File comments: 13
Uploads: 0
First; thanks or the update and interest on maintaining this addon. Cheers!!!

Second:

I am probably missing something here. I can't find the option to only show it when in combat.

I remember that it had it, no?

So, after the first hit, it stays on my screen forever. dimmed red.
Report comment to moderator  
Reply With Quote
Unread 10-29-14, 12:54 AM  
Miniace
A Kobold Labourer

Forum posts: 0
File comments: 9
Uploads: 0
Hi

I think you doing a great job with this addon I did enabled Barrage in the options (Interface Menu->FaceShooter) I did try to disable the 2 other options and black arrow etc, but still no barrage, but I did try this on a dummie, and maybe have to try on something that actually gets less then 80% hp?

And Ved I did have trouble download the addon as well it is an .RAR file, not like the other versions. so I had to get a program to unzip the file.
Last edited by Miniace : 10-29-14 at 01:00 AM.
Report comment to moderator  
Reply With Quote
Unread 10-28-14, 11:45 PM  
Ved
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
Not sure what I am doing wrong, but I have problems downloading the latest update. Previously I had to extract the actual file and place it in my wow addon folder, this option is not available with this version. If somebody could point me in the right direction, that would be great ty And ty so much Celetaras for keeping this addon alive !
Report comment to moderator  
Reply With Quote
Unread 10-28-14, 05:34 PM  
Celetaras
A Kobold Labourer

Forum posts: 0
File comments: 14
Uploads: 0
Barrage: I need to know if you have enabled Barrage in the options (Interface Menu->FaceShooter). I set the default option for Barrage as disabled unlike all the other talent based shots which were enabled, I'm sure now that was not the right decision. Next release I'll have set it as enabled by default. Let me know if you still have barrage issues after confirming it is enabled.

The first release, v1.2.0 I did a few days ago was basically to get it out to you all to have a look at and to get feedback on it. There were a lot of changes made. I'm currently working on a full optimization of the shot rotations and will get that you you when it's ready.

Moving forwards, my priorities are:
1. Shot optimizations (What this addon is really all about)
2. Finish implementing Careful Aim and Steady Focus
3. Implement any changes required for Level 100 (Focusing shot) and Dreanor perks
4. As required, any changes for gear, ie trinket procs or set bonuses that may affect rotations

Even further away (Don't hold your breath on these, just wishful thinking right now)
1. AoE mode
2. Animation of the icons's like it was back in WotLK days...

This is the first addon I've been responsible for, I don't have much of a background in development, I'm just a Hunter who likes shooting things. I purposely got myself an extra Hunter Alt (3 now) so I can test the different specs and talent combo's. I'm enjoying the challenge and hope you all get some benefit from FaceShooter.

Cheers, Celetaras of Caelestrasz
Last edited by Celetaras : 10-28-14 at 05:42 PM.
Report comment to moderator  
Reply With Quote
Unread 10-28-14, 05:12 AM  
Pranksterbit
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Originally Posted by Celetaras
I'll look into it, can I ask what other talents you have enabled in addition to Barrage, and also what spec you are playing?

Originally Posted by Miniace
Thanks for the update ...but I couldn't get Barrage to work...?
Hi there,

I created an account here just to give you some support and extend my appreciation of this addon. and the fact that it is being kept alive!

Barrage is also not working for me, and hopefully this info will help:

I have specced Marksman with the following talents:

Crouching Tiger, Hidden Chimaera
Binding Shot
Iron Hawk
Steady Focus
Stampede
Barrage

While trying to get my head around the class changes, i have been using this priority and it seems to be working quite well:

Kill shot (at 20%)>Chimaera>Barrage>Aimed (as a focus dump)>Steady

Hope this helps!
Report comment to moderator  
Reply With Quote
Unread 10-27-14, 02:33 PM  
Miniace
A Kobold Labourer

Forum posts: 0
File comments: 9
Uploads: 0
Originally Posted by Celetaras
I'll look into it, can I ask what other talents you have enabled in addition to Barrage, and also what spec you are playing?

Originally Posted by Miniace
Thanks for the update ...but I couldn't get Barrage to work...?
I am MM

Talents atm : Posthaste
Binding shot
Iron hawk
Thrill of the hunt
Stampede
Barrage
Last edited by Miniace : 10-28-14 at 08:18 AM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: