Sponsores

> Most of you already know that you can make a lot of money with darkmoon faire. For those who don't the thing is basically, there are 2 NPCs there that sell precious items for low prices. Those items spawn every 20 minutes or so, 1 or 2 of each. Rare gems, valuable plants and such. This guide will help you with buying all that spawns without worrying about any competition and even doing it AFK, no trouble, free gold.

This is the method me and a friend of mine used to make 10k gold in one darkmoon faire week. It works wonders, just follow the instructions. Also, having 2 people do this is easier since there are 2 npcs to be camped, and it works best if each of you just camp one of them at once.

Basically, we'll use 2 utilities, one that opens and closes the vendor window, and another that buys whatever you set it up to buy from that vendor.


Now, for the instructions:

The 2 things you need to download:

  • FreeRefills addon - This is an addon that buys stuff instantly from vendors, without having to even change the vendor pages, giving you a lot of advantage when racing to buy spawnable items, against other players since you dont have to search, turn the pages or click the items :)

  • AutoHotKey - This is the clicker which will open and close the vendor window. Most of you probably know it and know how to work with it better than me lol.



How to set them up:

FreeRefills:

Install it as you do any other addon.

Enter wow, enable it and start adding what you want it to buy using the commands:
/freerefills add [itemlink] #

[itemlink] - is obviously.. the link of the item you want to buy. For example, go to the AH, search for "Fel Lotus", shift-click it and there you have the link.
# - is the max quantity you want to have on your inventory of that item. (you'll want to set it to a high value, since you'll want to buy as much as possible, example: 500)


Example: /freerefills add [Fel Lotus] 500


Now, repeat the process for all the things you want to buy. And here I give you a list of some of the items we used to buy:

NPC (Lhara):

  • Fel Lotus

  • Black Lotus

  • Mountain Silversage

  • Netherbloom

  • Nightmare Vine

  • Enchanted Leather (this sells pretty badly)

  • Golden Sansam

  • Ghost Mushroom

  • Dreamfoil

  • Terocone


NPC (Professor Thaddeus Paleo):

  • Dawnstone

  • Living Ruby

  • Nightseye

  • Noble Topaz

  • Star of Elune

  • Talasite (check price on AH first to see if there is any profit buying for 12g)

  • Mote of Air

  • Mote of Earth

  • Mote of Fire

  • Mote of Life

  • Mote of Water

  • Mote of Mana

  • Mote of Shadow


Note: You'll be needing some money to buy those items.. so get your char with at least 200g or something.. just keep checking for it not to go out of money.


AutoHotkey:

Download and install.

This will be the basic script you'll be using:


Loop{

MouseClick, right, XXX, YYY ; Open the NPC

Sleep 2000 ; Give it some time to buy the items, cause of lag and stuff..

Send {ESC} ; Close the vendor window

Sleep 500 ; wait for it to close lol lagz and stuff

}
^!p::Pause

XXX - Coords on the X axis
YYY - Coords on the y axis

To find out the right coords, I usually use the "AutoScriptWrite" included with AutoHotkey, just record yourself clicking where you want to, and then check the coords and use them on the basic script I provided.

To pause the script just press "CTRL+ALT+P" which is the shortcut set on this code line "^!p::Pause".


Final Notes:

  • Works best with 2 people, one camping each NPC.

  • You should use first person view since it will lower the chance anyone will get on your line of sight to the NPC.

  • You should lay on the ground inside the NPC, which will make you harder to be seen by other people and at the same time you wont be reported for obstructing the NPC to anyone.

  • Basically.. dont care about being reported.. We were reported tons of times, nothing happened to us. GMs take tons of time to investigate such matters.. And Darkmoon will be gone by then.

  • Its obviously better to do this when the Faire is on your faction's ground, or shatrath at least. Going on the other faction's ground will most likely get you killed pretty fast.

  • Keep going to the AH everyday or so to sell what you buy, so you can get money to buy some more items.

  • One very important thing I would advise you not to do is selling everything you get at once, since you'll flood the market and lower the item prices, getting you a lower profit. Just keep selling them in small amounts at once, keep going to the AH everytime you sell something, but dont keep large amounts at auction at once.



PS: Any other doubts dont hesitate to ask.






If you enjoyed this post, make sure you subscribe to my RSS feed!

7 Comments

  1. i am not sure how u get the autokey to work or really how to set it up and how can i set it up to use both vendors

    ReplyDelete
  2. YOu can get a autohotkey from here:
    http://www.autohotkey.com/

    They also got a pretty good help forum. If you still can get it to work, let me know.

    ReplyDelete
  3. can u make a script for me u use more then 1 vendor cuz i cant figure out how to get it to work at all even with 1 vendor if u cant do 2 then 1 is fine. i also couldnt figure out how to get it to start running.

    ReplyDelete
  4. put it in window mode (1024x768) to make scripting easier.


    Code:
    Loop{

    MouseClick, right, 235, 290 ; First NPC location (Lahra)
    Sleep, 2000

    Send, {ESC}

    MouseMove 750, 280 ; Moves mouse to second NPC (Thaddeus)
    MouseClick, right
    MouseMove, 224, 287 ; Moves mouse to the Browse Wares
    Sleep, 500
    MouseClick, Left
    Sleep, 2000
    Send, {ESC}
    }
    ^!p::Pause

    ReplyDelete
  5. Loop{

    MouseClick, right, 272, 295 ; Open the NPC

    Sleep 500

    MouseClick, left, 272, 295 ; Open the trade window

    Sleep 2000 ; Give it some time to buy the items, cause of lag and stuff..

    Send {ESC} ; Close the vendor window

    Sleep 1000 ; Wait before switching NPC

    MouseClick, right, 1219, 607 ; Open the NPC

    Sleep 2000 ; Give it some time to buy the items, cause of lag and stuff..

    Send {ESC} ; Close the vendor window

    Sleep 500 ; wait for it to close lol lagz and stuff

    Send & ; Uses the macro mentioned in the post to disconnect in case of GM :P

    }
    ^!p::Pause

    ReplyDelete
  6. ok i used this script

    Code:
    Loop{

    MouseClick, right, 235, 290 ; First NPC location (Lahra)
    Sleep, 2000

    Send, {ESC}

    MouseMove 750, 280 ; Moves mouse to second NPC (Thaddeus)
    MouseClick, right
    MouseMove, 224, 287 ; Moves mouse to the Browse Wares
    Sleep, 500
    MouseClick, Left
    Sleep, 2000
    Send, {ESC}
    }
    ^!p::Pause

    but it wont click on the second vendor(using my coords)
    also didnt understand what the 2nd script was for

    ReplyDelete
  7. Thank you for your website
    I made with photoshop backgrounds for myspace or youtube and more
    my backgrounds: www.igset.com
    take care and thank you again!

    ReplyDelete

Post a Comment

Previous Post Next Post

Sponsores

Sponsores