 |
| Welcome to Elitist Jerks |
We're testing some new features on the site regarding OpenID registration and coordination with gamerDNA. If you experience any issues with registering an account, please take the time to fill out a report and send it to this e-mail address. We would appreciate any assistance you could provide in making sure everything is functioning as intended. Thanks!
If this is your first visit, please be sure to check out the FAQ and the forum rules. Users must register to post and new registrations are subject to a one day "mute" period to get acquainted with the community.
|
08/13/09, 8:53 PM
|
#4651
|
|
Glass Joe
|
Originally Posted by Silvanaa
|
Thanks so much!
|
|
|
|
|
|
08/14/09, 12:00 AM
|
#4652
|
|
Glass Joe
Human Death Knight
Laughing Skull
|
thank you Noraj and Tastie, much appreciated!
|
|
|
|
|
|
08/14/09, 4:51 AM
|
#4653
|
|
Von Kaiser
Blood Elf Warlock
Ravenholdt
|
Has anyone come across a more reliable way of combining main hand and offhand special attacks than MSBT? Because of the slight delay, MSBT often separates them =|
|
|
|
|
|
|
08/14/09, 10:54 AM
|
#4654
|
|
Glass Joe
Blood Elf Paladin
Dalvengyr
|
Assist View W/O Xperl
Posted in the Pitbull thread below, but it doesn't get much traffic. Sorry for extra post.
I dropped Xperl during my recent UI overhaul and now use Pitbull. I like Pitbull, I'd like to stay with Pitbull. I especially like having my group frames run from left to right, instead of the standard top-to-bottom; I couldn't find a way to make that happen with Xperl. And maybe I missed it, but I also like seeing the "expected" incoming heals on my health bar. But I may have to revert if I cannot find an addon to duplicate the "Assist View" from Xperl. It is a small frame that displays what healers are on you and who is on your target. I found this very, very useful and frankly don't want to tank without it.
Is there an addon to duplicate the "Assist View" frame from Xperl?
Or I suppose the inverse of this would work as well. Can I make Xperl display party frames left to right? Can I make Xperl display "anticipated" incoming health?
|
|
|
|
|
|
08/14/09, 1:33 PM
|
#4655
|
|
I have evil ovaries.
|
Originally Posted by PageCCCXI
[i]Posted in the Pitbull thread below, but it doesn't get much traffic. Sorry for extra
~clip~
|
+I'm almost positive you can have a Party Target (target of party member) window, which is what you're looking for, in Pitbull.
+You can show the expected incoming heals with Pitbull, look under indicators or other under the bar settings. You should be able to find it.
|
|
|
|
|
|
08/14/09, 1:56 PM
|
#4656
|
|
Ninja baby!
Night Elf Druid
Dragonblight
|
Originally Posted by Ohi
+I'm almost positive you can have a Party Target (target of party member) window, which is what you're looking for, in Pitbull.
|
That's not exactly what he's looking for. He wants one frame that shows all of the people targeting the same unit that he's targeting, which is quite different from having to look through multiple frames to determine the same information. Similar for healers, though that's less useful anyway since healers can heal without directly targeting someone (DPS can, too, but it's less widespread to have DPS mouseover macros).
|
|
|
|
|
|
08/14/09, 5:08 PM
|
#4657
|
|
Von Kaiser
|
I believe it's TipTac that shows me who else is targeting my target in the tooltip, even on mouseover.
|
|
|
|
|
|
08/14/09, 11:27 PM
|
#4658
|
|
Glass Joe
Blood Elf Paladin
Dalvengyr
|
Originally Posted by Titanstrider
I believe it's TipTac that shows me who else is targeting my target in the tooltip, even on mouseover.
|
You are quite correct. This isn't exactly what I was hoping for, but this will be serviceable, thank you!
Did find another problem with my UI today. How the ^&*( do you make the floating combat text smaller? I don't really like scrolling text like you get from MSCT or Parrot. I just want the numbers to keep popping over the enemies heads... just smaller.
|
|
|
|
|
|
08/14/09, 11:31 PM
|
#4659
|
|
Glass Joe
|
My UI
Addon List
If you notice in the middle-right of my screen there is a cross (+). I have no idea what addon that could be from. I update most of my mods on a regular basis so it could be any of them. My first thought was Stuf because it only appears when I target something in combat but I can't find anything in the options that it could be. Any help would be greatly appreciated.
|
|
|
|
|
|
08/15/09, 1:42 PM
|
#4660
|
|
Von Kaiser
|
Hello all,
I need a mod that will will automatically begin logging my combat log and stop logging when we engage/finish an encounter. I will always forget, and if I simply run it at the start of the instance then my log is too big for WWS to parse. Thank you.
|
|
|
|
|
|
08/15/09, 1:57 PM
|
#4661
|
|
Von Kaiser
Night Elf Hunter
Farstriders
|
Originally Posted by Zerstorung
Hello all,
I need a mod that will will automatically begin logging my combat log and stop logging when we engage/finish an encounter. I will always forget, and if I simply run it at the start of the instance then my log is too big for WWS to parse. Thank you.
|
That's easy to do with kgpanels, but you may run into a problem with all your buffs not showing up in the log as they were applied out of combat. You're much better off just splitting your log somewhere if its really that big.
If you just want the numbers, though, here's an outline of how to do it in kgpanels. (Code mostly from memory, so may need tweaking, but the idea is there.)
In OnLoad:
self:RegisterEvent("PLAYER_REGEN_DISABLED")
self:RegisterEvent("PLAYER_REGEN_ENABLED")
In OnEvent:
local inInstance, _ = IsInInstance()
If( inInstance ) then
if( event == "PLAYER_REGEN_DISABLED") then
LogCombat = true
elseif( event == "PLAYER_REGEN_ENABLED") then
LogCombat = false
end
end
|
|
|
|
|
|
08/15/09, 2:39 PM
|
#4662
|
|
Glass Joe
|
Originally Posted by Zerstorung
Hello all,
I need a mod that will will automatically begin logging my combat log and stop logging when we engage/finish an encounter. I will always forget, and if I simply run it at the start of the instance then my log is too big for WWS to parse. Thank you.
|
AutoCombatLog - Addons - Curse
|
|
|
|
|
|
08/15/09, 5:18 PM
|
#4663
|
|
Von Kaiser
|
Originally Posted by Zerstorung
Hello all,
I need a mod that will will automatically begin logging my combat log and stop logging when we engage/finish an encounter. I will always forget, and if I simply run it at the start of the instance then my log is too big for WWS to parse. Thank you.
|
LoggerHead : WoWInterface Downloads : Chat Mods
|
|
|
|
|
|
08/17/09, 5:18 PM
|
#4664
|
|
Glass Joe
|
Does anyone know of a mod that puts the materials required to make craftables on their tooltips? Specifically glyphs (i.e. when you hover over a Glyph of Rending it adds "Lion's Ink x 1 + Common Parchment x 1")
Thanks!
|
|
|
|
|
|
08/18/09, 1:02 PM
|
#4665
|
|
Glass Joe
Human Mage
Azjol-Nerub (EU)
|
I'm looking for a simple addon, that will display how many of an item I have across all characters on my account. Currently, I'm using Altoholic, and while it's very good at what it does, it also does a lot of things I don't really need, and since all I use it for is profs on alts and total item counts, I'm looking for a simple replacement ....
So, if anyone knows of one, please feel free to share.
|
|
|
|
|
|
08/18/09, 8:31 PM
|
#4666
|
|
Glass Joe
Blood Elf Warlock
Doomhammer
|
Originally Posted by Erpgore
I'm looking for a simple addon, that will display how many of an item I have across all characters on my account. Currently, I'm using Altoholic, and while it's very good at what it does, it also does a lot of things I don't really need, and since all I use it for is profs on alts and total item counts, I'm looking for a simple replacement ....
So, if anyone knows of one, please feel free to share.
|
Combuctor has this built in. If you dont want the bag mod, Sanity2 does this as well. Be sure to install Sanity2 AND SanityItemCache.
|
|
|
|
|
|
08/19/09, 4:29 AM
|
#4667
|
|
Von Kaiser
Human Rogue
Earthen Ring (EU)
|
Mine
Originally Posted by Erpgore
I'm looking for a simple addon, that will display how many of an item I have across all characters on my account. Currently, I'm using Altoholic, and while it's very good at what it does, it also does a lot of things I don't really need, and since all I use it for is profs on alts and total item counts, I'm looking for a simple replacement ....
So, if anyone knows of one, please feel free to share.
|
I've been using ArkInventory (coupled with tiptac) which does this too, tells me right in the tooltip which of my characters have the same item and how many of it. It also specifies if any of those items are stored in the bank or not.
|
Hell's Gate Arrested / Gott Mit Uns / And Shine Heaven Now
|
|
|
|
08/19/09, 12:57 PM
|
#4668
|
|
repwnd
Night Elf Druid
Burning Legion
|
I have done a little searching, but have come up short since i'm not sure exactly how to search for it ... or what to search for.
As a GM, occasionally i'll turn on Repairs and then log off in a haste, or at the end of the night/after raiding, i'll hit that 'i'm tired, sleep now' time, and forget to turn them off ... much to the chagrin of my Officers ... and the texts i'll get either shortly thereafter or the next day.
So basically, i'm wondering if there exists a mod to say 'Hey, you have repairs on', or something, when I go to logoff. I know that sounds ridiculous, but everyone makes mistakes, and it'd be nice to avoid that if possible... and I can't imagine that would be a difficult mod to create, so i'm simply wondering if it exists.
Any help or ideas on that would greatly benefit me, and maybe others that have had that moment of mental failure.
|
/sanfordandson 'buh buh bway nuh ... buh buh bway nuh bwuh nay bwuh'
|
|
|
|
08/19/09, 7:08 PM
|
#4669
|
|
Von Kaiser
Tauren Warrior
Xavius (EU)
|
Originally Posted by VerziehenOne
I have done a little searching, but have come up short since i'm not sure exactly how to search for it ... or what to search for.
As a GM, occasionally i'll turn on Repairs and then log off in a haste, or at the end of the night/after raiding, i'll hit that 'i'm tired, sleep now' time, and forget to turn them off ... much to the chagrin of my Officers ... and the texts i'll get either shortly thereafter or the next day.
So basically, i'm wondering if there exists a mod to say 'Hey, you have repairs on', or something, when I go to logoff. I know that sounds ridiculous, but everyone makes mistakes, and it'd be nice to avoid that if possible... and I can't imagine that would be a difficult mod to create, so i'm simply wondering if it exists.
Any help or ideas on that would greatly benefit me, and maybe others that have had that moment of mental failure.
|
AutoGuildRepair : WoWInterface Downloads : Raid Mods
I have seen this few days ago. Maybe you can make it work for you.
|
|
|
|
|
|
08/20/09, 8:48 AM
|
#4670
|
|
Glass Joe
Blood Elf Priest
Scarshield Legion (EU)
|
Hi guys,
I recently started playing with a warlock and I'm looking for a mod which puts a warning on my screen (like a raidwarning) whenever my target has less then 25% health left.
I tried "TwentyFive" but that only seems to work for bosses.
|
|
|
|
|
|
08/20/09, 2:22 PM
|
#4671
|
|
Glass Joe
|
Originally Posted by LiNK2088
Hi guys,
I recently started playing with a warlock and I'm looking for a mod which puts a warning on my screen (like a raidwarning) whenever my target has less then 25% health left.
I tried "TwentyFive" but that only seems to work for bosses.
|
I believe Power Auras is capable of that.
Instructions
Mystic Chicanery » Addon: Power Auras
Power Auras is a mod where you program in the desired conditions and it displays the programmed desired visual or audio cue when the condition are met such as your 25% health on mobs.
It isn't a dedicated mod for warlocks for that specific task so don't expect a "load and go" type play. You'll have to program in the conditions.
|
|
|
|
|
|
08/21/09, 10:19 PM
|
#4672
|
|
Glass Joe
|
Reply
Originally Posted by barrettj
Does anyone know of a mod that puts the materials required to make craftables on their tooltips? Specifically glyphs (i.e. when you hover over a Glyph of Rending it adds "Lion's Ink x 1 + Common Parchment x 1")
Thanks!
|
I have been using a combination of LilSparky's Workshop and Advanced Trade Skill Window for enchanting, JC, LW, and Inscription for some time. ATSW gives you a 'qeue' of sorts. Say I qeue up an enchant massacre and a chest powerful stats, but don't have the materials. I log onto my banker ALT and go to the AH, and it lists the materials needed for any crafted items I have qeued across all my alts. Makes getting mats much easier. Don't know if that's what you're looking for, but I hope it helps.
BTW: Both addons are available through Curse.com - WoW Addons WAR Addons Gamer Blogs Forums
|
|
|
|
|
|
08/21/09, 10:37 PM
|
#4673
|
|
Glass Joe
|
I have one for everyone. I've been looking for 2 weeks now for a UI of some kind that allows me to see who's speaking when Vent is open, without having to alt-tab back and forth. Anyone?
|
|
|
|
|
|
08/22/09, 2:05 AM
|
#4674
|
|
Don Flamenco
|
Originally Posted by infexus
I have one for everyone. I've been looking for 2 weeks now for a UI of some kind that allows me to see who's speaking when Vent is open, without having to alt-tab back and forth. Anyone?
|
Have you tried the overlay settings built into Vent? It's something like the fourth or fifth tab to the right in the settings. As far as I know, that's the purpose of it, though I've never turned it on since I have a dualscreen setup and vent's visible anyway.
EDIT: I don't want to create a second post for this, but I did a bit more digging, and found the following:
Voice Overlay - Communication - World of Warcraft Mods, Addons, and More! as suggested in this thread on the Blizzard forums.
That being said, I believe there may be a bit of a stigma associated with WoWUi.incgamers having to do with some possible keylogger activity infecting them in the past. Anything that's third party software which isn't actually a LUA based WoW addon you should approach with caution and at your own discretion.
Last edited by Noraj : 08/22/09 at 4:44 AM.
|
"The question is not how far we are going to take it... the question is, do you possess the constitution to go as far as needed?" - Il Duce
|
|
|
|
08/22/09, 3:36 AM
|
#4675
|
|
Glass Joe
|
lol Okie, I feel stupid now. Thanks!
The positioning really sucks, though. Everywhere the system allows it to go, it's right on top of something in my UI. Are there any addons that would allow for more controlled positioning?
|
|
|
|
|
|
|