Unofficial World of Warcraft Forums  
Please respect other members. Please do not post links or information about hacking/warez/cheats.
Read the rules of these forums as we rarely warn before banning. Lost or need RSS check the forum map.

Quick Site Nav
Navigation
Worldofwar.Net
WoW Forums
WoWDigger WoW Database
Articles
Community Blogs
WoW Info
Wrath of the Lich King Info
Primary Professions
Secondary Professions
Maps
Classes
PvP
A-Z Index
Guides
Submit Guides
List Guides
UI/Mods
Latest Mods
Submit Mod
List Macros
Submit Macro
Media Gallery
Gallery Home
Upload Pics
Community WoW Shots
Community BC Shots
Player Pics
Official WoW Shots
Official BC Shots


Donate and get extra forum perks
Support WoW:IncGamers

Go Back   Unofficial World of Warcraft Forums > WoW Community Forums > UI Customisation

Reply
 
Thread Tools Display Modes
Old 22-05-2005, 06:29 AM   #1
morbiDDDD
WorldofWar.Net Member
 
morbiDDDD's Avatar
 
Join Date: May 2005
Posts: 8
Question REQUEST: Hunter Aspects

Upon searching I have seen a couple of threads where it has been stated that spells cannot be auto cast but require a button click or keypress.

What I would like if possible is the following:

When I click any ranged attack, Aspect of the Hawk is cast first before the attack and when I click any melee attack, Aspect of the Monkey is cast first before the attack.

Would this be possible? If so I'd really appreciate someone coding it for me, as I have no grasp of scripting whatsoever.

Thanks for any replies. :happy14:
morbiDDDD is offline   Reply With Quote
Old 22-05-2005, 06:49 AM   #2
Broadfoot
WorldofWar.Net Member
 
Join Date: Apr 2005
Location: Israel
Posts: 22
Quote:
Originally Posted by morbiDDDD
Upon searching I have seen a couple of threads where it has been stated that spells cannot be auto cast but require a button click or keypress.

What I would like if possible is the following:

When I click any ranged attack, Aspect of the Hawk is cast first before the attack and when I click any melee attack, Aspect of the Monkey is cast first before the attack.

Would this be possible? If so I'd really appreciate someone coding it for me, as I have no grasp of scripting whatsoever.

Thanks for any replies. :happy14:


Thats a brilliant Idea. no reply here but i second the concept and would be eternally grateful to anyone who could come up with such a thing! =) BF
Broadfoot is offline   Reply With Quote
Old 23-05-2005, 01:46 AM   #3
Devla
WorldofWar.Net Member
 
Devla's Avatar
 
Join Date: Jan 2005
Posts: 95
Great idea, but its already been done (and works great I might add).

You're looking for Zorlen's Hunter Functions

Example of the macros I use with Zorlen's addon installed (note all of these macros can also be found in QT UI, available on this site):

I setup my ranged attacks in ActionBar1 and my melee attacks in ActionBar2...then hide actionbar2 (easily done with BibMod).

This macro casts hunter's mark, and sends in your pet:
Code:
/script castMark();
/script PetAttack();
This macro casts auto shot, makes sure Aspect of the Hawk is up, and that ActionBar1 is active:
Code:
/cast Auto Shot
/script castHawk()
/script CURRENT_ACTIONBAR_PAGE=1;
/script ChangeActionBarPage();
This macro makes sure Aspect of the Hawk is up, and that Ranged keys (ActionBar1) are active:
Code:
/script castHawk()
/script CURRENT_ACTIONBAR_PAGE=1;
/script ChangeActionBarPage();
This macro casts Aspect of the Monkey, switches the main action bar to the melee bar, targets the nearest enemy, attacks it, and tells your pet to attack the target:
Code:
/script castMonkey()
/script CURRENT_ACTIONBAR_PAGE=2;
/script ChangeActionBarPage()
/script if (not Zorlen_canAttack()) then TargetNearestEnemy() end
/script AttackTarget()
/script PetAttack()
This macro just makes sure Aspect of the Monkey is up and that the melee bar is active:
Code:
/script castMonkey()
/script CURRENT_ACTIONBAR_PAGE=2;
/script ChangeActionBarPage()

Zorlen has examples fairly similar on his site, but the ones I listed above are the most handy in my opinion.

Good luck
Devla is offline   Reply With Quote
Old 24-05-2005, 12:58 AM   #4
morbiDDDD
WorldofWar.Net Member
 
morbiDDDD's Avatar
 
Join Date: May 2005
Posts: 8
Ok, thanks that does sound quite useful, although not quite what I had in mind.

What I'd really like is some mod which just casts Hawk when I click *any* ranged attack and Monkey when I click *any* melee attack e.g.

I click Arcane Shot or Serpent Sting and AotH gets cast beforehand
I click Raptor Strike and AotM gets cast beforehand

I have no idea if this is possible, but I the meantime I'll definately use some of Devla's suggestions.
morbiDDDD is offline   Reply With Quote
Old 25-05-2005, 11:52 PM   #5
blaising
WorldofWar.Net Member
 
Join Date: Apr 2005
Location: Chicago
Posts: 5
That's a great idea. I will work on that one. I hope you don't mind if I ask you to beta test it.
blaising is offline   Reply With Quote
Old 26-05-2005, 09:01 PM   #6
blaising
WorldofWar.Net Member
 
Join Date: Apr 2005
Location: Chicago
Posts: 5
Addon created

Check out Hunters Aspect.

It is a proof of consept but has a huge downside. Only one action can be made per hardware event. So if the Aspect gets changed you need to rerun the action.
blaising is offline   Reply With Quote
Old 27-05-2005, 12:11 PM   #7
morbiDDDD
WorldofWar.Net Member
 
morbiDDDD's Avatar
 
Join Date: May 2005
Posts: 8
Hey blaising,

Gonna check out your proof of concept this evening. Sounds like a good start. I'm definately up for beta testing anything you create around this idea, and I hope you are able to find a way around the apparent limitation.

As I've said, I have no clue about scripting so I can't suggest anything myself, but gj on giving it a go! :happy34:
morbiDDDD is offline   Reply With Quote
Sponsored Links
Old 27-05-2005, 07:32 PM   #8
morbiDDDD
WorldofWar.Net Member
 
morbiDDDD's Avatar
 
Join Date: May 2005
Posts: 8
Ok, I've tested it now. It's actually pretty useful as it is now imo. Of course it would be great to get it fully functional but I'm gonna use it however complete it is atm.

If you plan to continue with it can I make a couple of short term suggestions? Just some extra commands that would be useful:

/huntersaspect removehawk
/huntersaspect removemonkey
/huntersaspect toggle (on/off)

And also can you make it cast monkey when I have to right click a mob to melee with it in a tight situation?

Thanks for this anyway. :happy53:
morbiDDDD is offline   Reply With Quote
Old 28-05-2005, 01:45 AM   #9
blaising
WorldofWar.Net Member
 
Join Date: Apr 2005
Location: Chicago
Posts: 5
I put your suggestions up there.

I don't think I can hook into the action of clicking on a mob, but I will look into it and see what I can do.
blaising is offline   Reply With Quote
Old 28-05-2005, 08:45 PM   #10
morbiDDDD
WorldofWar.Net Member
 
morbiDDDD's Avatar
 
Join Date: May 2005
Posts: 8
Hmm, I found quite a big bug with Hunters Aspect today.

Before when I had just AotH Rank 1 it worked fine. Today, since I've gained AotH Rank 2, using ranged attacks still casts AotH Rank 1, while using melee attacks tries to cast AotH Rank 2. This means when I melee it cancels out the Hawk instead of casting Monkey.

Just to illustrate; I attack with range, Hawk Rank 1 gets cast. I then attack with melee, Hawk Rank 1 gets cancelled. I have to click melee again, Hawk Rank 2 gets cast.

If you want to it needs fixing so that:

a) The highest rank of aspect you have is always cast
b) It doesn't bug out when you get new aspect ranks

Regards
morbiDDDD is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 03:32 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Advertisement System V2.5 By   Branden