Elitist Jerks
Register
Blogs
Forums


Go Back   Elitist Jerks » User Interface and AddOns

Reply
 
LinkBack Thread Tools
Old 05/27/09, 5:48 AM   #2026
Ruiz
Glass Joe
 
Ruiz's Avatar
 
Blood Elf Death Knight
 
Wrathbringer (EU)
Thank's for the help so far. I tried AutoHotKey but never wrote a script before. As far as I understood the linked information (as well as the AHK's help menu) in order to activate on keydown i just need to create the following script:

Send {1 down}{2 down}{3 down}...

Unfortunately it seems that I've misunderstood something since the script does not work at all. Any ideas on what I am doing wrong?

Offline
Reply With Quote
Old 05/27/09, 6:05 AM   #2027
Qupe
Von Kaiser
 
Qupe's Avatar
 
Troll Druid
 
Illidan
Originally Posted by Aximous View Post
Is there any way in pitbull to enable cooldown text only for player buffs/debuffs but not for target/focus/etc?
Which version of Pitbull, 3 or 4? PB4 allows the option to set text on any frame you want (or don't want) in the Display tab of each frame's aura heading.

Offline
Reply With Quote
Old 05/27/09, 1:09 PM   #2028
Taidaisher
Von Kaiser
 
Taidaisher's Avatar
 
Night Elf Hunter
 
Stormscale
Is there a way to remove the default quest tracking from Blizzard's default quest log?

Offline
Reply With Quote
Old 05/27/09, 5:14 PM   #2029
Ajuga
Piston Honda
 
Ajuga's Avatar
 
Undead Mage
 
Jaedenar (EU)
@ Ruiz: You should take a look at HotkeyNet too. Your script would look something like this:

<Label w1 Local SendWinM "World of Warcraft">

<KeyList MyList 0-9, Numpad0-Numpad9, Divide, Multiply, F1, F3-F9, Oem2, Oem6>

<Hotkey MyList; Shift MyList; Alt MyList; Ctrl MyList; Shift E; Ctrl E>
    <SendLabel w1>
        <Key %Trigger%>
This is a simple version of my script. It basically sends any hotkey registered by <Hotkey ...>. So pressing 5 will send a quick 'keydown 5' followed by a 'keyup 5'.

This works for me anyway. And is also great for multiboxing.

Last edited by Ajuga : 05/28/09 at 5:43 PM.

Offline
Reply With Quote
Old 05/27/09, 8:37 PM   #2030
Sitizen
Glass Joe
 
Tauren Druid
 
Balnazzar
Background or Border ColorByClass

I was wondering if anyone knows how to, or could direct me to a post about, setting up backgrounds or borders that are colored by class with pitbull4.

I know how to make powerbars and healthbars ColorByClass but I was hoping to highlight my frames with class colors as well. Similiar to the frames in the first post of this thread.

I have not found any way to do this through pitbull4, I "think" that it might be possible to set up kgpanels for each frame. But after experimenting with kgpanels I haven't had much success. I found this post with scripts that sound like they should do what I want, but it's a year old thread and when I tried setting up those scripts in kgpanels they did not work for me.

If anyone knows how this is done, and can elaborate, or has a link to a walkthrough from elsewhere I'd appreciate it.

Thanks.

Offline
Reply With Quote
Old 05/30/09, 1:20 AM   #2031
Mordekhuul
Don Flamenco
 
Orc Warlock
 
Terenas
Afflicted3

Has anyone figured out how to get Afflicted3 working in arenas?

I did some testing, through adding print() statements in various locations Afflicted.lua and cannot figure out why the mod simply refuses to activate in an arena setting.

I verified that the COMBAT_LOG_EVENT_UNFILTERED function is being registered and is being called throughout any arena match. I also verified that it isn't exiting the function early, as it (for example) enters the AbilityTriggered() function when the eventType is SPELL_CAST_SUCCESS, but none of the icons, bars, or timers appear like they do when I'm, say, sitting in the sewers of Dalaran watching folks duel each other.

Obviously I triple checked the configuration ahead of time, and the mod is clearly setup to activate in an arena setting.

I even put print() statements in ZONE_CHANGED_NEW_AREA() where it determines whether it should be active and it is clearly and correctly determining the setting to be 2v2 arena when I sign up for an unrated match to test.

Very odd - I had assumed that something simple must have broken, and it simply wasn't firing in arenas, but it is definitely parsing enemy actions and going through the motions, but is somewhere deciding not to show the icons and perform other configured actions in there.

Offline
Reply With Quote
Old 05/30/09, 2:01 AM   #2032
Valerian
King Hippo
 
Night Elf Druid
 
Blackhand
Does anyone know if there's a way to get SCT to show the damage you take when you're in a vehicle? Its showing the damage I'm dealing fine but its not showing incoming damage at all.

Offline
Reply With Quote
Old 05/31/09, 12:09 AM   #2033
Whitemane
King Hippo
 
Orc Hunter
 
Tarren Mill (EU)
Originally Posted by Valerian View Post
Does anyone know if there's a way to get SCT to show the damage you take when you're in a vehicle? Its showing the damage I'm dealing fine but its not showing incoming damage at all.
Make sure it shows pet damage, I use MSBT however and in MSBT it is classified as pet damage. Should be the same in SCT.

Offline
Reply With Quote
Old 05/31/09, 7:50 PM   #2034
Silverwind
Von Kaiser
 
Silverwind's Avatar
 
Gnome Mage
 
Antonidas (EU)
Does someone know a way to disable the blizzard raid warning text in the center of the screen (when freya's elder cast something for example) ? i've searched wowwiki, but wasn't able to find anything useful (like the frame name).

Offline
Reply With Quote
Old 05/31/09, 9:12 PM   #2035
Sitizen
Glass Joe
 
Tauren Druid
 
Balnazzar
Originally Posted by Mordekhuul View Post
Has anyone figured out how to get Afflicted3 working in arenas?

I did some testing, through adding print() statements in various locations Afflicted.lua and cannot figure out why the mod simply refuses to activate in an arena setting.

I verified that the COMBAT_LOG_EVENT_UNFILTERED function is being registered and is being called throughout any arena match. I also verified that it isn't exiting the function early, as it (for example) enters the AbilityTriggered() function when the eventType is SPELL_CAST_SUCCESS, but none of the icons, bars, or timers appear like they do when I'm, say, sitting in the sewers of Dalaran watching folks duel each other.

Obviously I triple checked the configuration ahead of time, and the mod is clearly setup to activate in an arena setting.

I even put print() statements in ZONE_CHANGED_NEW_AREA() where it determines whether it should be active and it is clearly and correctly determining the setting to be 2v2 arena when I sign up for an unrated match to test.

Very odd - I had assumed that something simple must have broken, and it simply wasn't firing in arenas, but it is definitely parsing enemy actions and going through the motions, but is somewhere deciding not to show the icons and perform other configured actions in there.
Afflicted3 DOES work in Arena's. There is an option to enable it in Arena's under the general menu. If that isn't work delete the afflicted.lua files in your SavedVariables folder inside WTF and start from scratch.

Offline
Reply With Quote
Old 06/01/09, 2:36 AM   #2036
Pau
Glass Joe
 
Undead Rogue
 
Mal'Ganis
Cooldown Mod

Is anyone aware of a working cooldown timer? I really do not like showing bars for space and looks reasons. I'm looking for something similar to hourglass or cooling. I've tried cooldowntimers, cooldownbuttons and making a little bar with only cooldown abilities on it with bartender and i didn't really like them too much. thanks for the help

Offline
Reply With Quote
Old 06/01/09, 2:43 AM   #2037
Heeno
Piston Honda
 
Heeno's Avatar
 
Gnome Warlock
 
Alterac Mountains
Originally Posted by Pau View Post
Is anyone aware of a working cooldown timer? I really do not like showing bars for space and looks reasons. I'm looking for something similar to hourglass or cooling. I've tried cooldowntimers, cooldownbuttons and making a little bar with only cooldown abilities on it with bartender and i didn't really like them too much. thanks for the help
Not sure exactly what you are looking for, but Heatsink - Addons - Curse is a rewrite of hourglass.

Offline
Reply With Quote
Old 06/01/09, 10:13 AM   #2038
Mordekhuul
Don Flamenco
 
Orc Warlock
 
Terenas
Originally Posted by Sitizen View Post
Afflicted3 DOES work in Arena's. There is an option to enable it in Arena's under the general menu. If that isn't work delete the afflicted.lua files in your SavedVariables folder inside WTF and start from scratch.
Thanks. I ended up doing just that and it seems to work fine now, for whatever reason (I had Arena's checked the whole time...kind of odd).

What doesn't work for me under any circumstance is Afflicted3's dispel/interrupt announcements. Is it working for anyone, or is there another handy mod that announces failed interrupts, failed cleanses, and successful ones to a chat channel? I'd love to have it spilled into party chat so my teammates and I can see it in our party chat bubbles as we move about.

EDIT - Found a fix in a forum thread at ArenaJunkies:

Try finding

elseif( ( eventType == "SPELL_DISPEL" or eventType == "SPELL_STOLEN") and self.db.profile.dispelLocation ~= "none" and bit.band(sourceFlags, COMBATLOG_OBJECT_AFFILIATION_MINE) == COMBATLOG_OBJECT_AFFILIATION_MINE and bit.band(destFlags, COMBATLOG_OBJECT_REACTION_HOSTILE) == COMBATLOG_OBJECT_REACTION_HOSTILE ) then

and replacing it with

elseif( ( eventType == "SPELL_DISPEL" or eventType == "SPELL_STOLEN") and self.db.profile.dispelLocation ~= "none" and bit.band(sourceFlags, COMBATLOG_OBJECT_AFFILIATION_MINE) == COMBATLOG_OBJECT_AFFILIATION_MINE ) then

Works fine now.

Last edited by Mordekhuul : 06/01/09 at 11:12 AM.

Offline
Reply With Quote
Old 06/01/09, 7:23 PM   #2039
Oranjin
Glass Joe
 
Blood Elf Paladin
 
Firetree
I suspect you guys have answered this; but I can't seem to find it. I use a mac and as a result I find that some of the add-ons don't work properly/ don't work at all on my mac. Not a single one of the mods I've ever downloaded of off curse actually works on my mac. Is this a common problem? If so, is there anything to be done to get Dangerous Boss Mod and other essential raid mods?

Offline
Reply With Quote
Old 06/01/09, 8:06 PM   #2040
Nephthys
Von Kaiser
 
Nephthys's Avatar
 
Undead Rogue
 
Hyjal
Originally Posted by Oranjin View Post
I suspect you guys have answered this; but I can't seem to find it. I use a mac and as a result I find that some of the add-ons don't work properly/ don't work at all on my mac. Not a single one of the mods I've ever downloaded of off curse actually works on my mac. Is this a common problem? If so, is there anything to be done to get Dangerous Boss Mod and other essential raid mods?
WoW addons are platform-independent, so playing on a Mac shouldn't be an issue. Maybe you're not putting the right folders in the right places? Make sure they go in the World of Warcraft/Interface/AddOns folder. Also make sure the the folder you're putting in there has a .toc file in it someplace. If there's just more folders, then those are the ones you need to put in the AddOns folder. Also make sure that you've enabled those addons inside of WoW.

Is anyone aware of a working cooldown timer? I really do not like showing bars for space and looks reasons.
You could try TellMeWhen.

1/5 15:55:46.001 UNIT_DIED, 0x0000000000000000, nil, 0x80000000, 0xF130001942161FB7, "Gamon", 0xa28

Offline
Reply With Quote
Old 06/02/09, 7:09 AM   #2041
Ruiz
Glass Joe
 
Ruiz's Avatar
 
Blood Elf Death Knight
 
Wrathbringer (EU)
I am curious on why MSBT's font seems so blurred:


Offline
Reply With Quote
Old 06/02/09, 3:39 PM   #2042
thebadmf
Glass Joe
 
thebadmf's Avatar
 
Human Rogue
 
Wildhammer (EU)
The goal.

I'd like a way to publish timer bars for my interrupt cooldown on fights such as The General. Ideally the people doing the interrupting will use a similar thing so that we can tell when we are on Cooldown and another needs to pick it up.

Aftercast can do part of the job, and both DBM and Bigwigs allow 'pizza timers' to be shown but that's the bulk of the problem. Some of the group use DBM and others, me included use Bigwigs and I really don't want to change unless I really, really have to.

So is there a way to have bars publish to both boss mods or, another mod I can use to publish bars to a raid group?

Some humans would do anything to see if it was possible to do it. If you put a large switch in some cave somewhere, with a sign on it saying 'End-of-the-World Switch. PLEASE DO NOT TOUCH', the paint wouldn't even have time to dry.

England Offline
Reply With Quote
Old 06/02/09, 4:19 PM   #2043
Lysandro
Glass Joe
 
Blood Elf Paladin
 
Onyxia (EU)
Range of names over PC and NPC

My grilfriend and I was twinking together and I took a look at her Screen. And i was really astonished. She can see the Names of PC and NPC on a longer range than I on my screen, not the nameplates, just the names.

She hasn't done anything, like alwys I think it was a addon or ui script that's enabling this.

Anybody know the command or the addon that enables this.

And sry for my bad english xD.

Just found it in another Forum.. Thanks

Last edited by Lysandro : 06/02/09 at 6:13 PM.

Offline
Reply With Quote
Old 06/03/09, 3:26 AM   #2044
Enmi
Glass Joe
 
Undead Mage
 
Burning Legion (EU)
Hi guys, i just wonder if anyone know how to change the colour on the numbers Mana,Health on the addon Pitbull.

Offline
Reply With Quote
Old 06/03/09, 4:14 AM   #2045
Hwi
Glass Joe
 
Hwi's Avatar
 
Human Paladin
 
Sylvanas (EU)
Just have a quick question. I use MSBT on my warrior, but it does not show all off my outgoing damage. Sometimes skip white hits and other attacks. Seems to be totally random what attacks get skipped. I know i do damage beacuse the mob looses health, just nothing showing up in my MSBT. Anyone experienced something similar or have a suggestion?

Offline
Reply With Quote
Old 06/03/09, 4:15 AM   #2046
Dankz
Von Kaiser
 
Dankz's Avatar
 
Undead Mage
 
Caelestrasz
Originally Posted by Silverwind View Post
Does someone know a way to disable the blizzard raid warning text in the center of the screen (when freya's elder cast something for example) ? i've searched wowwiki, but wasn't able to find anything useful (like the frame name).
Both DMB and Big Wigs have a Spam Filter. It says something about"repress boss emotes" Check that.

Originally Posted by Ruiz View Post
I am curious on why MSBT's font seems so blurred:

Are you sure that MSBT? Looks a bit like the default Blizzard Damage Text me. If it was Miks that yellow attack would have an Icon next to it.

Originally Posted by thebadmf View Post
The goal.

I'd like a way to publish timer bars for my interrupt cooldown on fights such as The General. Ideally the people doing the interrupting will use a similar thing so that we can tell when we are on Cooldown and another needs to pick it up.

Aftercast can do part of the job, and both DBM and Bigwigs allow 'pizza timers' to be shown but that's the bulk of the problem. Some of the group use DBM and others, me included use Bigwigs and I really don't want to change unless I really, really have to.

So is there a way to have bars publish to both boss mods or, another mod I can use to publish bars to a raid group?
I seem to remember a Mod that our Rogues used on ROS Vodka Kickers Not sure if it what your looking for or it it will help. Also big Wigs Pizza Bar Shows DBM Pizza timers, but not vice versa.

Offline
Reply With Quote
Old 06/03/09, 10:37 PM   #2047
Qupe
Von Kaiser
 
Qupe's Avatar
 
Troll Druid
 
Illidan
I used to have a CURSOR folder in my interface folder that modified my cursor; it stopped working and all other cursor modifications stopped working as well. just wondering if modifying cursor appearance is possible anymore and if anyone knows where to find a working mod.

Offline
Reply With Quote
Old 06/04/09, 10:02 AM   #2048
Vranx
Von Kaiser
 
Undead Mage
 
Gurubashi
Originally Posted by Qupe View Post
I used to have a CURSOR folder in my interface folder that modified my cursor; it stopped working and all other cursor modifications stopped working as well. just wondering if modifying cursor appearance is possible anymore and if anyone knows where to find a working mod.
This mod is working fine for me:
Cursor : WoWInterface Downloads : Graphic UI Mods


Offline
Reply With Quote
Old 06/04/09, 10:46 AM   #2049
Qupe
Von Kaiser
 
Qupe's Avatar
 
Troll Druid
 
Illidan
Originally Posted by Vranx View Post
This mod is working fine for me:
Cursor : WoWInterface Downloads : Graphic UI Mods
I'm speaking about completely changing the in-game cursor. The .blp's that were in the folder changed the normal "hand" cursor to a small triangle. For whatever reason (some patch, I assume) they aren't changing the cursor's look anymore.

Offline
Reply With Quote
Old 06/04/09, 4:28 PM   #2050
AmeroGER
Von Kaiser
 
AmeroGER's Avatar
 
Orc Warrior
 
Stormscale (EU)
Originally Posted by Qupe View Post
I'm speaking about completely changing the in-game cursor. The .blp's that were in the folder changed the normal "hand" cursor to a small triangle. For whatever reason (some patch, I assume) they aren't changing the cursor's look anymore.
I searched Curse for an AddOn that could do that and found this in a description:
NO LONGER WORKS DUE TO CHANGES THAT CAME WITH 3.1 Since patch 3.1 the default cursor by Blizzard cannot be overridden by file replacement. This means you cannot put the custom BLP file in Warcraft/Interface/Cursor/Point.blp and have it automatically show up in-game anymore.

Offline
Reply With Quote
Reply

Go Back   Elitist Jerks » User Interface and AddOns

Thread Tools