Simple Autoit Clicker and Egg Cracker -p
Simple quick script to AFK and get all the eggs you will need, this works best in higher population areas as you will have a shorter time till egg respawn.
1. Create a Macro to open eggs (Since they don't stack)
a) For the macro put inCode:/use Brightly Colored Eggb) Drag Macro icon to whatever the 2 hotkey is set to2. Use the following Autoit script, depending on screen size, resolution, and what you desire as your "Egg Cracker" button edit as you like.
3. Make sure you have auto loot turned on in interface options.Code:WinWaitActive("World of Warcraft") Global $UnPaused HotKeySet("{F1}", "TogglePause") HotKeySet("{F2}", "Terminate") While 1 Sleep(100) ToolTip("Doing Nothing... F1=Click for Egg, F2=Quit",0,0) WEnd Func TogglePause() $UnPaused = NOT $UnPaused While $UnPaused ToolTip("Clicking for Egg... F1=Pause, F2=Quit",0,0) sleep (800) MouseClick("right") sleep (1000) Send ("2") ;Set whatever button you want to have used to crack your eggs (This is the button tied to the macro) WEnd EndFunc Func Terminate() Exit 0 EndFunc
4. Find a location that you like, place your mouse pointer where the egg spawns, Hit F1 to Start it, and go have a beer or 7.
AutoIt Instructions:
If you don't have Autoit you can grab it from: AutoIt v3 - Downloads
Then just copy and paste script in, save, compile(Tools\Compile). The executable that it creates will be stored in the same location that you saved your script in.
If you don't want to get AutoIt:
Download for pre-compiled version: http://www.megaupload.com/?d=5XOIBJ4A (If using this version you still need to do step 1, 3, 4)
TIPS:
1. Start the script as a rabbit, either run around and grab a couple eggs or have somenoe case the rabbit branch thing on you. This will make sure that once you do start looting eggs you will not have your perspective changed when you get turned into a rabbit which will screw up your mouse positioning.
2. First person view for the egg clicking and also close to the place where the egg spawns is your best bet though 3rd person will work your targetable area for clicking is much smaller and you have a greater chance that someone running by will get clicked on and you might turn slightly.