Jama EXP/Health not showing up on 2nd box and /assist question
For some reason my second box is not showing the Jamba exp bars. I have it on the main box and have pushed it to the second box but even with log out/ log back in it is not showing up. I am using the most recent version.
Also, not to sound TOO dense, but how can I set the second box to target my main's target? Is it possible to do this automatically?
Thank you for a phenominal add-on!!
RE: Jama EXP/Health not showing up on 2nd box and /assist question
Quote:
Originally Posted by 'OgreKing',index.php?page=Thread&postID=149590#pos t149590
For some reason my second box is not showing the Jamba exp bars. I have it on the main box and have pushed it to the second box but even with log out/ log back in it is not showing up. I am using the most recent version.
Also, not to sound TOO dense, but how can I set the second box to target my main's target? Is it possible to do this automatically?
Thank you for a phenominal add-on!!
There is an option in the display tab of the /jamba interface that goes something like "Only display bars on master character". You will need to uncheck that to see the box on your other character (and push the settings).
Easiest way is to have you main as focus on you second character.
/focus Main
then in macros you can use something like
/target focustarget
/startattack
or
/cast [target=focustarget][] Lightning Bolt
There are plenty of examples around these forums / wiki of these types of macros.
And you are welcome.
RE: RE: Jama EXP/Health not showing up on 2nd box and /assist question
Quote:
Originally Posted by 'Jafula',index.php?page=Thread&postID=149775#post1 49775
Quote:
Originally Posted by 'OgreKing',index.php?page=Thread&postID=149590#pos t149590
For some reason my second box is not showing the Jamba exp bars. I have it on the main box and have pushed it to the second box but even with log out/ log back in it is not showing up. I am using the most recent version.
Also, not to sound TOO dense, but how can I set the second box to target my main's target? Is it possible to do this automatically?
Thank you for a phenominal add-on!!
There is an option in the display tab of the /jamba interface that goes something like "Only display bars on master character". You will need to uncheck that to see the box on your other character (and push the settings).
Easiest way is to have you main as focus on you second character.
/focus Main
then in macros you can use something like
/target focustarget
/startattack
or
/cast [target=focustarget][] Lightning Bolt
There are plenty of examples around these forums / wiki of these types of macros.
And you are welcome.
Another way of doing the same:
/assist [target=focus,exists]
/cast Lightnig Bolt
The benefit of this over "/cast [target=focustarget][] Lightning Bolt" that you don't have to rewrite the focus code when you have multiple spells in 1 macro:
/assist [target=focus,exists]
/cast [nomod] Spell1
/cast [mod:shift] Spell2
/cast [mod:alt] Spell3
I am personally going to improve it to this:
# Some cast macro
/click MultiBarRightButton1
/cast [nomod] Spell1
/cast [mod:shift] Spell2
/cast [mod:alt] Spell3
# My main 'target select' macro on MultiBarRightButton1 which is an account-global macro:
/assist [target=focus,exists]
The benefit of the system above is that you could easily change the target selection of ALL your macros (on 1 account) by changing 1 simple macro.
There would be a target selection macro for attacking and a separate one for healing.
More info: http://www.wowwiki.com/Making_a_macr..._button_clicks
[edit] For healing I actually do "/target [target=focustarget,exists,noharm,nodead][target=focus,exists]" so I can see that my healer has targetted the right party member in the member list on the screen. This is important, because sometimes you have selected the wrong team member because of lag. With DPS this lag isn't so much of an issue, but healing is quite crucial at some points.
RE: RE: RE: Jama EXP/Health not showing up on 2nd box and /assist question
Quote:
Originally Posted by 'Ken',index.php?page=Thread&postID=149787#post1497 87
I am personally going to improve it to this:
# Some cast macro
/click MultiBarRightButton1
/cast [nomod] Spell1
/cast [mod:shift] Spell2
/cast [mod:alt] Spell3
# My main 'target select' macro on MultiBarRightButton1 which is an account-global macro:
/assist [target=focus,exists]
The benefit of the system above is that you could easily change the target selection of ALL your macros (on 1 account) by changing 1 simple macro.
There would be a target selection macro for attacking and a separate one for healing.
More info:
http://www.wowwiki.com/Making_a_macr..._button_clicks
[edit] For healing I actually do "/target [target=focustarget,exists,noharm,nodead][target=focus,exists]" so I can see that my healer has targetted the right party member in the member list on the screen. This is important, because sometimes you have selected the wrong team member because of lag. With DPS this lag isn't so much of an issue, but healing is quite crucial at some points.
I use a /click target method myself and am fairly happy with it. From time to time I have an issue with a little lag when trying to use /click targetting for heal so I had to go another route when it came to that. When it comes to DPS it works great.