To the mods: If this isn't the right place or if you just don't want the thread. Delete/move.
How to Automate your Prospecting.
Things this does not do: This is not a smart bot or script. This is just to save you the task of a very annoying Prospecting.
Step 1: Load your bag full of Saronite Ore / Titanium Ore, keep it in stacks of 5, 10, 15, or 20. No 4 stacks or 18 stack stragglers, it won't work. - Make sure to turn on Auto Loot
Step 2: Install www(dot)autohotkey(dot)com software, it's a simple macro software with keyboard interaction. (I do _NOT_ know if this can get you banned, please use it at your own disgression. I've been doing it for 3 months, no problems so far.)
Step 3: Create the following macro in World of Warcraft, and place it on BUTTON 5 of any bar that's out of the way, I prefer bar 6, but that doesn't matter, what's important is that it's on Button 5 unless you modify the script.
Macro
Step 4: Create a folder on your desktop called "AHK" (This is where all your scripts would go) - In this folder right click and select "New - Autohotkey Script" - name it "Prospecting" or something you are familiar with / will remember.
Step 5: Right click your new script and chose "Edit Script"
Copy the following code into the blank document.
Step 6: Right click "Prospect" script and choose "Run Script" - go back into your World of Warcraft game, and press F1 to begin the prospecting. It will do both saronite and titanium ore due to the macro. Press F2 if you want to pause the script. Lastly press F3 if you want to exit the script completely.
Copyright: This script was written by me, Necrohealiac. If you wish to expand on this script, feel free to do so at your own digression. I will not help you if you break the script by editing it. If you wish to post this tutorial in another location/forum please PM me first. I hold no responsibilities of any problems you encounter with this script with Blizzard Entertainment. Remember, I too am using this script.
How to Automate your Prospecting.
Things this does not do: This is not a smart bot or script. This is just to save you the task of a very annoying Prospecting.
Step 1: Load your bag full of Saronite Ore / Titanium Ore, keep it in stacks of 5, 10, 15, or 20. No 4 stacks or 18 stack stragglers, it won't work. - Make sure to turn on Auto Loot
Step 2: Install www(dot)autohotkey(dot)com software, it's a simple macro software with keyboard interaction. (I do _NOT_ know if this can get you banned, please use it at your own disgression. I've been doing it for 3 months, no problems so far.)
Step 3: Create the following macro in World of Warcraft, and place it on BUTTON 5 of any bar that's out of the way, I prefer bar 6, but that doesn't matter, what's important is that it's on Button 5 unless you modify the script.
Macro
Code:
/cast Prospecting
/use Saronite Ore
/use Titanium Ore
Step 5: Right click your new script and chose "Edit Script"
Copy the following code into the blank document.
Code:
#SingleInstance Force ;Forces AHK to allow only one script at a time
#NoEnv
#ifWinActive World of Warcraft ;Only runs the script if the active window is World of Warcraft
{
;<===== HotKey Toggle =====>
~Enter::Suspend ;When pressing Enter to chat, suspends the rapid key presses. Pressing enter again resumes the macro.
return
$\::Suspend ;Toggle script suspend when pressing \
return
$F1:: ; Make the F1 key into a hotkey (the $ symbol facilitates the "P" mode of GetKeyState below).
Loop ; Since no number is specified with it, this is an infinite loop unless "break" or "return" is encountered inside.
{
Send 5 ; This will press 5 on your keyboard. .
sleep 100
}
return
$F2::Pause ;
$F3::ExitApp ;
}
Step 6: Right click "Prospect" script and choose "Run Script" - go back into your World of Warcraft game, and press F1 to begin the prospecting. It will do both saronite and titanium ore due to the macro. Press F2 if you want to pause the script. Lastly press F3 if you want to exit the script completely.
Copyright: This script was written by me, Necrohealiac. If you wish to expand on this script, feel free to do so at your own digression. I will not help you if you break the script by editing it. If you wish to post this tutorial in another location/forum please PM me first. I hold no responsibilities of any problems you encounter with this script with Blizzard Entertainment. Remember, I too am using this script.