Chubtohd
Almost Awesome
2280 HKs / hour
First off, you will get reported...ppl are funny like that...make sure you don't cuss em out and give them a bannable offense Next, get a GMs permission (don't blame me if you don't). I actually had to ask 2 different ones...and the 2nd one had to ask his boss :
Next, you need to use a multi-box software or broadcasting addon. I used ISBoxer (don't download from any site other than theirs). What this will allow you to do is broadcast keystrokes across all the open wow accounts.
Make some HK monkeys ... have them die outside their starting area, run in ghost form (you can still auto-follow while dead) to the GY or your choice....
Here are the macros you'll need:
#Show Tooltip Sinister Strike
/startattack
/cast Sinister Strike
(if you just auto attack, it'll dps too slow...if you just SS, you'll have to wait for energy regen)
/run RepopMe()RetrieveCorpse()
(this needs to be on the same action bar on all your HK monkeys that your SS macro is on your main)
With 4 instances of WoW open (your main + 3 HK monkeys) you'll get around 2280 HKs per hour ... making 100k in about 44 hours played
_____________________________________________
the super fast way:
run as many WoW clients as your computer can handle (no less than 3 FPS or you'll gimp your HKs) ... level a pally or start a DK on another account (pets with auto attack and shaman totems don't work) keybind their consecrate / dnd to the same one as the others ... and go to town
i am running 10 HK monkeys on my system and am getting 8k HKs / hour
_____________________________________________
the extra super fast way:
have a guildie or friend run ISBoxer with as many clients as their computer can handle, run some trial accounts to you ... then have some more do it ... and then some more.
have them use this code...they can then go to bed ... what this script does is auto rez even if the window is minimized ... took a while to figure this out, had to have another guildie help me with it. other auto-rez addons do it too quick after the repop me and you end up not getting rezzed... this one uses the onEvent to refresh on the frame refresh to see if you're dead / spirit form / etc ...
with enough ppl...you could reach 100k quickly....only thing to keep in mind is that AoE dmg is now capped ... so if consecrate hits for 200 / tick on 10 targets ... it'll hit for 100 / tick on 20 ... and 50 / tick on 30 ... lvl1 priests start with 52 HP
if you use a pally ... have them go this spec so they never oom and do max dmg on consecrate:
The World of Warcraft Armory
Glyph of Consecration and Glyph of Blessing of Wisdom
First off, you will get reported...ppl are funny like that...make sure you don't cuss em out and give them a bannable offense Next, get a GMs permission (don't blame me if you don't). I actually had to ask 2 different ones...and the 2nd one had to ask his boss :
Next, you need to use a multi-box software or broadcasting addon. I used ISBoxer (don't download from any site other than theirs). What this will allow you to do is broadcast keystrokes across all the open wow accounts.
Make some HK monkeys ... have them die outside their starting area, run in ghost form (you can still auto-follow while dead) to the GY or your choice....
Here are the macros you'll need:
#Show Tooltip Sinister Strike
/startattack
/cast Sinister Strike
(if you just auto attack, it'll dps too slow...if you just SS, you'll have to wait for energy regen)
/run RepopMe()RetrieveCorpse()
(this needs to be on the same action bar on all your HK monkeys that your SS macro is on your main)
With 4 instances of WoW open (your main + 3 HK monkeys) you'll get around 2280 HKs per hour ... making 100k in about 44 hours played
_____________________________________________
the super fast way:
run as many WoW clients as your computer can handle (no less than 3 FPS or you'll gimp your HKs) ... level a pally or start a DK on another account (pets with auto attack and shaman totems don't work) keybind their consecrate / dnd to the same one as the others ... and go to town
i am running 10 HK monkeys on my system and am getting 8k HKs / hour
_____________________________________________
the extra super fast way:
have a guildie or friend run ISBoxer with as many clients as their computer can handle, run some trial accounts to you ... then have some more do it ... and then some more.
have them use this code...they can then go to bed ... what this script does is auto rez even if the window is minimized ... took a while to figure this out, had to have another guildie help me with it. other auto-rez addons do it too quick after the repop me and you end up not getting rezzed... this one uses the onEvent to refresh on the frame refresh to see if you're dead / spirit form / etc ...
Code:
local RepopMe = RepopMe
local RetrieveCorpse = RetrieveCorpse
local UnitIsDeadOrGhost = UnitIsDeadOrGhost
local f = CreateFrame("Frame")
f:Hide()
f.events = {}
f.events["PLAYER_DEAD"] = function(s,e,...)
RepopMe()
end
f.events["CORPSE_IN_RANGE"] = function(s,e,...)
s:Show()
s:RegisterAllEvents()
end
f.RegisterEvents = function(s)
for k,v in pairs(s.events) do
s:RegisterEvent(k)
end
end
f.TryClaimCorpse = function(s)
RetrieveCorpse()
if not UnitIsDeadOrGhost("player") then
s:Hide()
s:UnregisterAllEvents()
s:RegisterEvents()
end
end
f:SetScript("OnEvent", function(s,e,...)
if s.events[e] then
s.events[e](s,e,...)
else
s:TryClaimCorpse()
end
end)
f:SetScript("OnUpdate", function(s,e)
s:TryClaimCorpse()
end)
f:RegisterEvents()
with enough ppl...you could reach 100k quickly....only thing to keep in mind is that AoE dmg is now capped ... so if consecrate hits for 200 / tick on 10 targets ... it'll hit for 100 / tick on 20 ... and 50 / tick on 30 ... lvl1 priests start with 52 HP
if you use a pally ... have them go this spec so they never oom and do max dmg on consecrate:
The World of Warcraft Armory
Glyph of Consecration and Glyph of Blessing of Wisdom