Hi, This is completly my idea which I thought about lately.
It doesn't give very much gold per hour, but you can do it while AFK or while watching movies.
The idea is to let autoit click on vendor, use 3 macros - buyItems macro, disItem1 macro and disItem2 macro.
Why is this great? Because you make gold while afk, you won't get reported or anything, because who cares about a guy standing next to vendor on abandoned Halaa ?
Mostly, when I wake up in the morning, it still gets planars for me, so halaa is rarely taken over.
1. First of all, you have to make a simple script in autoit, looking like this: (u gotta press f1 at vendor location right after u stard script)
Code:
global $pos1
global $pos2
hotkeyset("{F1}", "pos1")
hotkeyset("{F2}", "pos2")
func pos1()
$pos1 = mousegetpos()
endfunc
func pos2()
$pos2 = mousegetpos()
endfunc
while 1
WinActivate("World of Warcraft")
WinwaitActive("World of Warcraft")
Mouseclick("Secondary", $pos1[0], $pos1[1])
Send("{NUMPAD1}")
Sleep(3000)
Send("{NUMPAD2}")
Sleep(5000)
Send("{NUMPAD3}")
Sleep(5000)
Send("/script CloseMerchant()")
Send("{ENTER}")
wend
2. Then make following macros:
Macro1
Code:
/script local function buy (n,q) for i=1,100 do if n==GetMerchantItemInfo(i) then BuyMerchantItem(i,q) end end end buy ("Arkadian Claymore",1) buy ("The Sharp Cookie",1);
Macro2
Code:
/use disenchant
/use arkadian claymore
Macro3
Code:
/use disenchant
/use the sharp cookie
Then save macros, bind them preferably to NUMPAD1, NUMPAD2, NUMPAD3, or to other key, but then you will have to modify the autoit script.
3. Go to Halaa, place your character near vendor like this
Code:
http://i43.tinypic.com/2vkx5b6.jpg
run the script and PROFIT.
If you will have any questions - ask here or through PM.
All criticism, ideas etc. is welcome.