Elitist Jerks
Register
Blogs
Forums


Go Back   Elitist Jerks » Class Mechanics » Warlocks

Closed Thread
 
LinkBack Thread Tools
Old 02/15/09, 6:38 PM   #646
Arnath
Piston Honda
 
Undead Warlock
 
Tichondrius
It's actually pretty easy to hack Quartz a bit and make it do the same thing as ForteXorcist for Drain Soul. If people want I can post how I did it or PM me for the file I changed. Or if you're too lazy to do this, if you change your Quartz texture to "Fifths", it has nice little lines for when your Drain Soul ticks will end up happening.

Offline
Old 02/15/09, 6:49 PM   #647
Dpartd
Glass Joe
 
Gnome Warlock
 
Deathwing
Originally Posted by Arnath View Post
It's actually pretty easy to hack Quartz a bit and make it do the same thing as ForteXorcist for Drain Soul. If people want I can post how I did it or PM me for the file I changed. Or if you're too lazy to do this, if you change your Quartz texture to "Fifths", it has nice little lines for when your Drain Soul ticks will end up happening.
There are two problems with this method.

1) The "Fifth" lines will always be there cluttering up your Quartz casting bar even when you are not casting Drain Soul.
2) Pushback: On fights with Pushback, and you get hit while channeling Drain Soul, your ticks will not automatically re-adjust to appear in the correct locations (like ForteXorcist will).

Offline
Old 02/16/09, 4:05 AM   #648
Issa
Von Kaiser
 
Issa's Avatar
 
Undead Warlock
 
Kilrogg (EU)
If you don't want 4 bars for 1 spell, you can also just skip the quartztimers and only use those of Forte, which enables you to give all your dots a nice color of their own in the meantime. If you give Drain Soul a dark color it will stand out and the mark will show very clear. If Quartz can also change the color of the timers for a single spell, I have never found it.

Offline
Old 02/16/09, 6:43 AM   #649
leino
Glass Joe
 
Human Warlock
 
Vek'nilash (EU)
Just wondering, how do you guys manage your key binds, do you use any macro's? or just every spell by itself on a different button. And on which buttons. Honestly "bind-management" is quite hard with so affliction

Offline
Old 02/16/09, 7:44 AM   #650
Kazzim
Glass Joe
 
Gnome Warlock
 
Kor'gall (EU)
Originally Posted by leino View Post
Just wondering, how do you guys manage your key binds, do you use any macro's? or just every spell by itself on a different button. And on which buttons. Honestly "bind-management" is quite hard with so affliction
It's quite easy. Just use button close to "wasd" for spell you use the most.

Offline
Old 02/16/09, 9:28 AM   #651
Schael
Glass Joe
 
Human Warlock
 
Silvermoon (EU)
And macro's ofc
/cast with modifiers

Offline
Old 02/16/09, 9:45 AM   #652
leino
Glass Joe
 
Human Warlock
 
Vek'nilash (EU)
Originally Posted by Schael View Post
And macro's ofc
/cast with modifiers
Any possibility to link them ?

Offline
Old 02/16/09, 10:00 AM   #653
Schael
Glass Joe
 
Human Warlock
 
Silvermoon (EU)
Check here for examples:
Useful macros for warlocks - WoWWiki - Your guide to the World of Warcraft

And do it yourself

Offline
Old 02/16/09, 11:25 AM   #654
duhwhat
Piston Honda
 
Undead Warlock
 
Area 52
Originally Posted by Issa View Post
If you don't want 4 bars for 1 spell, you can also just skip the quartztimers and only use those of Forte, which enables you to give all your dots a nice color of their own in the meantime. If you give Drain Soul a dark color it will stand out and the mark will show very clear. If Quartz can also change the color of the timers for a single spell, I have never found it.
I posed this same question to the author of DoTimer, who not only showed me how to do this in DoTimer, but in Quartz as well. Here is the code that needs to be inserted into Buff.lua to get colored timers in Quartz:

Find line 310. The preceeding code looks like this:

if v.isbuff then
               bar:SetStatusBarColor(unpack(db.buffcolor))
            else
               if db.debuffsbytype then
                  local dispeltype = v.dispeltype
                  if dispeltype then
                     bar:SetStatusBarColor(unpack(db[dispeltype]))
                  else
                     bar:SetStatusBarColor(unpack(db.debuffcolor))
                  end
               else
                  bar:SetStatusBarColor(unpack(db.debuffcolor))
               end
            end
Add lines like this to change colors. In this example, Corruption is white:

if v.isbuff then
               bar:SetStatusBarColor(unpack(db.buffcolor))
            else
               if db.debuffsbytype then
                  local dispeltype = v.dispeltype
                  if dispeltype then
                     bar:SetStatusBarColor(unpack(db[dispeltype]))
                  else
                     bar:SetStatusBarColor(unpack(db.debuffcolor))
                  end
               else
                  bar:SetStatusBarColor(unpack(db.debuffcolor))
               end
            if v.name == "Corruption" then bar:SetStatusBarColor(1, 1, 1) end
            if v.name == "WHATEVER!" then bar:SetStatusBarColor(1, 1, 1) end
            end
         end
The colors I use are as follows. This gives me a nice check to see (1) do I have 2 reds (Haunt/Corr), then proceed (2) to check for 2 yellows (UA/Immo), and finally proceed (3) to check for 2 greens (SL/CoA), and if green is up, go ahead and use filler.

if v.name == "Corruption" then bar:SetStatusBarColor(1, 0.20, 0.20) end
if v.name == "Haunt" then bar:SetStatusBarColor(1, 0.20, 0.20) end
if v.name == "Unstable Affliction" then bar:SetStatusBarColor(1.0, 0.80, 0.20) end
if v.name == "Immolate" then bar:SetStatusBarColor(1.0, 0.80, 0.20) end
if v.name == "Drain Soul" then bar:SetStatusBarColor(0, 0, 1) end
if v.name == "Curse of Agony" then bar:SetStatusBarColor(0, 0.6, 0) end
if v.name == "Siphon Life" then bar:SetStatusBarColor(0, 0.6, 0) end
Obviously you can change the colors to whatever you like. The method to change them for DoTimer is also discussed in the comments section for DoTimer on WoWInterface.

Offline
Old 02/16/09, 11:35 AM   #655
16dots
Glass Joe
 
Undead Warrior
 
Kil'Jaeden
Originally Posted by leino View Post
Just wondering, how do you guys manage your key binds, do you use any macro's? or just every spell by itself on a different button. And on which buttons. Honestly "bind-management" is quite hard with so affliction
i use 1 2 3 4 5 as Haunt, UA, Immolate, CoA, Siphon Life

Q - Drain soul
E - Corruption

G - Shadowbolt

F1 - lifetap


^--- thats all the aff rotation buttons


but since you are 41/30...:

1 - immolate
2 - corruption
3 - Coa
4 - Incinerate macroed with DE

F1 - lifetap

^--- 5 buttons.

Last edited by 16dots : 02/16/09 at 11:40 AM.

Offline
Old 02/16/09, 11:39 AM   #656
Waagaa
Glass Joe
 
Blood Elf Priest
 
Stormrage (EU)
Originally Posted by leino View Post
Just wondering, how do you guys manage your key binds, do you use any macro's? or just every spell by itself on a different button. And on which buttons. Honestly "bind-management" is quite hard with so affliction
My bindings are as follows:

SDFE to walk (S/F to strafe, E = forward, D = backward)

W = haunt
R = shadowbolt
T = Immolate
V = CoA
C = Corruption
X = Unstable affliction

Q = Pet Attack
A = Pet Follow
Z = Key for Random binds (trinket use, quest item, etc)

1 = Drain Life
2 = Soul Shatter
3 = Siphon Life
4 = Drain Soul
5 = Dark Pact or Shadowflame (depends on spec)
6 = Life Tap

It takes a bit of getting used to, but it allows me to do everything with one hand without having to move my hand at all.

SHIFT + 1-6 and SHIFT + WRTXCV are also bound to stuff.

Offline
Old 02/16/09, 11:43 AM   #657
dave55man
Glass Joe
 
Human Warlock
 
Cenarius
Originally Posted by leino View Post
Just wondering, how do you guys manage your key binds, do you use any macro's? or just every spell by itself on a different button. And on which buttons. Honestly "bind-management" is quite hard with so affliction
My key binds are a bit more simplistic, and are as follows:

1: haunt
2: ShadowBolt (cuz wht else whould you bind shadowbolt too)
3: UA
4: Immo
5: SL
6: CoA/CoE (Or whatever curse I need to use for the fight)
E: Life Tap (emo cut)
Q: SoC
Ctrl + Q: Death Coil
7: Drain Soul
8: Drain Life
9 - = : are binded to things i rarely use
F1: Corr
F3: That portal thing
R: Telport to said portal thing
Ctrl + R: Use trinket
F2: Soul Shater
F5-F8: potions and healing items.
I find that it's easier this way because applying my dots are as easy as going through 1,3,4,5,6.

Offline
Old 02/16/09, 2:56 PM   #658
supplicium
Don Flamenco
 
supplicium's Avatar
 
Gnome Warlock
 
Alterac Mountains
I'm using the following

`: UA
1: SB
2: Immolate/ua macro
3: Corruption
4: CoA
5: Searing pain
Q: Haunt
E: SL
Shift 4: CoE
F1: DS
F2: DL
F3:Dm
F4: SoulShatter
F: Fear
Shift F: HoT
X: Demonic Circle: teleport
Shift X: Demonic Circle Summon
C: Shadowfury/CoExaustion 
G: Demon ring for opie
Shift G: Stone ring for opie/summon
T: Quest Items/Rapid use items (like pvp macro or potion macros
V: trinket macro
Z: Racial
R: Seed
shift R: Banish
there are many more not worth listing.

Last edited by supplicium : 02/16/09 at 3:01 PM.

The character linked in your profile appears to be below level 10. This may account for your poor Patchwerk DPS.

Offline
Old 02/16/09, 3:49 PM   #659
turturin
Don Flamenco
 
Orc Warlock
 
Kilrogg
Do none of you have dedicated strafe key-bindings? I ask because of the movement keys, these are the 2 I use the most. I run and turn with the mouse.

To avoid the problem of losing Q and E as key binds, I do this (for all my toons actually):
W = Strafe left
E = Forward
R = Strafe Right
S = turn left
D = walk backward
F = turn Right.

This allows usage of 1-6, Q, A, Z, X, C, V, B, G, T, Y, and H (17 keys) without moving my hand and places my pinky more naturally (for me anyway) on "Shift". I always found the standard movement key set-up to be too far to the left of the keyboard for my liking.

Offline
Old 02/16/09, 4:11 PM   #660
supplicium
Don Flamenco
 
supplicium's Avatar
 
Gnome Warlock
 
Alterac Mountains
Originally Posted by turturin View Post
Do none of you have dedicated strafe key-bindings? I ask because of the movement keys, these are the 2 I use the most. I run and turn with the mouse.

To avoid the problem of losing Q and E as key binds, I do this (for all my toons actually):
W = Strafe left
E = Forward
R = Strafe Right
S = turn left
D = walk backward
F = turn Right.

This allows usage of 1-6, Q, A, Z, X, C, V, B, G, T, Y, and H (17 keys) without moving my hand and places my pinky more naturally (for me anyway) on "Shift". I always found the standard movement key set-up to be too far to the left of the keyboard for my liking.
Most of us don't have turn keys, we use a and d or in your case s and f to strafe left and right.

The character linked in your profile appears to be below level 10. This may account for your poor Patchwerk DPS.

Offline
Closed Thread

Go Back   Elitist Jerks » Class Mechanics » Warlocks

Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
[Warlock] Affliction cast-rotation Merin Class Mechanics 26 07/08/08 9:52 AM
[Warlock] new Affliction spec mydoom The Dung Heap 6 06/13/07 12:02 PM
[Warlock] Unstable Affliction or Ruin? Soul80 Class Mechanics 8 05/29/07 12:02 PM
[Warlock] - Affliction Crit/DPS/More ?'s Emolition Class Mechanics 11 05/01/07 4:41 PM
Best gear attainable by a non-raiding affliction warlock ? Nitz Class Mechanics 5 04/30/07 5:08 PM