Herbalism/Mining auto switcher menu

User Tag List

Results 1 to 11 of 11
  1. #1
    gooms9's Avatar Member
    Reputation
    6
    Join Date
    Mar 2007
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Herbalism/Mining auto switcher

    Hey, this is a little program I wrote the other day to automatically swap between herbalism and mining tracking. It works by simply setting up a macro in WoW "/castsequence Find Herbs, Find Minerals" and then putting it on your hotbar and setting a keybinding to that button to "F6". Then just turn on my program, and set how often you want it to switch between the two, and hit the start button.

    It sends a driver level keyboard input to your WoW window so it could also double as an anti-afk bot if you want. I dont think this could ever be caught by warden as there is no memory accessing involved, simply a keyboard impulse being fired on a timer, but I really know nothing about Warden, so use at your own risk.

    It's not super fancy, but it's been working out well for me so I figured I would share it here in case someone else has been looking for something along these lines, but don't want to risk their account security with a memory accessing bot. I do plan on making the key that it presses configurable, but for the time being I figure most people don't have F6 bound to anything. If you're really aching to use this though, but have to have it set to a certain key, feel free to PM me and I'll compile you a version with your requested key, or I'll send you the source code so you can change it yourself if you know something about programming.

    So yea, hope someone finds some use out of this.

    Virustotal. MD5: 2c8d23180afa4da32b3574495aeb2ec1

    EXE FILE: RapidShare: Easy Filehosting

    Edit: I've posted the source code here as well, because I know I probably wouldn't trust some strange exe that some random person posted online either, so yea, here it is for anyone who wants it.

    http://www.virustotal.com/analisis/8...997e8b9a4a8ee5

    SOURCE CODE: http://rapidshare.com/files/19188513...ource.zip.html
    Last edited by gooms9; 01-31-2009 at 12:58 AM.

    Herbalism/Mining auto switcher
  2. #2
    Flame_Warrior's Avatar Member
    Reputation
    36
    Join Date
    Sep 2008
    Posts
    182
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone want to try this out? i dont have any testing accounts atm. mine got banned. plus rep for the idea anyway.

    Wofa.us = website in progress. beginning \\\\ ||||||||||done https://www.youtube.com/watch?v=NVFaGb3ZkBk=awesome vid!!

  3. #3
    lothlogan's Avatar Active Member
    Reputation
    29
    Join Date
    Nov 2006
    Posts
    137
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No need for it really, as you can just keybind the macro that was used...however, +rep for the program idea.

  4. #4
    gooms9's Avatar Member
    Reputation
    6
    Join Date
    Mar 2007
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I originally did that, but I found it to be kind of a hassel to constantly run around spam clicking a button so I figured I would just write something to click it for me. It actually works quite a bit better than I would have originally thought.

  5. #5
    laviss's Avatar Member
    Reputation
    2
    Join Date
    Sep 2008
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i tried it on my test account *aka friends account* it works +rep

  6. #6
    druluv2sk8's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this is awesome i love it

  7. #7
    gooms9's Avatar Member
    Reputation
    6
    Join Date
    Mar 2007
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Glad you could make some use out of it!

  8. #8
    Taylor123123's Avatar Member
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    92
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wow, genious idea. +rep

  9. #9
    DrunkenDonkey's Avatar Member
    Reputation
    2
    Join Date
    Aug 2007
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    There is an addon for that, Spotter: Spotter - Addons - Curse

  10. #10
    Elvemo's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    the link is down :s

  11. #11
    TheOnlyOne's Avatar Member
    Reputation
    1
    Join Date
    Jan 2007
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Everybody can write it...
    try AutoIt AutoIt v3 - Automate and Script Windows Tasks - For Free!

    Edit: And for all the lazy people

    Code:
    Global $Paused
    #Include <WinAPI.au3>
    
    Local $hwnd
    Local $winclass
    $hwnd = WinGetHandle("World of Warcraft")
    $winclass = _WinAPI_GetClassName($hwnd)
    
    HotKeySet("{ESC}", "Stop")
    HotKeySet("{PAUSE}", "PauseScript")
    
    While 1
        ControlSend("","", $hwnd, "1", 1)
        Sleep(100)
    WEnd
    
    Func PauseScript()
        $Paused = NOT $Paused
        While $Paused
            sleep(100)
            ToolTip('Paused',0,0)
        WEnd
        ToolTip("")
    EndFunc
    
    
    Func Stop()
        Exit
    EndFunc
    this little script is spamming every 100 ms the 1-Key in the WoW-Window (independent of focus)
    The PAUSE Key is doing what a Pause-Key has 2do
    and ESCape exits the script

    Just load AutoIt and feel free to adjust the number/letter/F1 (etc) or the time, also able to compile in small .exe programs.

    Tip:
    In the AutoIt manual is a big list of special-keys like the F-Keys, but it's very simple.
    Just replace the "1" in
    Code:
    ControlSend("","", $hwnd, "1", 1)
    with "{F6}" and now the script is spamming the F6-Key
    Code:
    ControlSend("","", $hwnd, "{F6}", 1)
    Last edited by TheOnlyOne; 02-17-2009 at 08:46 PM.

Similar Threads

  1. [Buying] Need Herbalism & Mining leveled to max from start!
    By Chloroform in forum World of Warcraft Buy Sell Trade
    Replies: 2
    Last Post: 07-18-2012, 06:47 PM
  2. Nodes (Herbalism/Mining) - Minimum level for use?
    By Tanaris4 in forum WoW Memory Editing
    Replies: 7
    Last Post: 06-08-2011, 08:05 AM
  3. [Selling] Herbalism/Mining Leveling Service
    By xRaBBiTx in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 03-20-2011, 12:17 AM
  4. [Selling] [EU] Specialist Herbalism + Mining Profession Leveling Service.
    By Phatbat in forum World of Warcraft Buy Sell Trade
    Replies: 1
    Last Post: 09-09-2010, 06:29 AM
  5. Replies: 18
    Last Post: 01-29-2009, 03:55 PM
All times are GMT -5. The time now is 11:26 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search