[Request] D3 Equip Macro menu

User Tag List

Results 1 to 5 of 5
  1. #1
    iMozzy's Avatar Member
    Reputation
    11
    Join Date
    Sep 2010
    Posts
    188
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Request] D3 Equip Macro

    Would this be hard to create? Would help out LOADS for those of us who farm and switch rapidly into their MF gear.

    I'm thinking a custom key that will toggle between sets. Get into your typical set and click one button, then get into your other gear and click another button (to save the sets). Set a custom button that will toggle between the two and voila!

    [Request] D3 Equip Macro
  2. #2
    t221152's Avatar Member
    Reputation
    1
    Join Date
    May 2012
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    use autohotkey, you can find a nice beginners guide at Autohotkey Basic Keybinding Guide - Friendly Poker

    this is my script, will work for people with 1680x1080

    it's binded to alt + A

    !A::
    Send, i
    RandSleep(50,100) ;
    MouseClick, right, 1542, 619
    RandSleep(30,60) ;
    MouseClick, right, 1576, 614
    RandSleep(30,60) ;
    MouseClick, right, 1630, 609
    RandSleep(30,60) ;
    MouseClick, right, 1636, 714
    RandSleep(30,60) ;
    MouseClick, right, 1594, 715
    RandSleep(30,60) ;
    MouseClick, right, 1552, 711
    RandSleep(30,60) ;
    MouseClick, right, 1542, 788
    RandSleep(30,60) ;
    MouseClick, right, 1541, 826
    RandSleep(30,60) ;
    MouseClick, right, 1493, 817
    RandSleep(30,60) ;
    Send, {ALTDOWN}
    MouseClick, right, 1581, 774
    RandSleep(30,60) ;
    Send, {ALTUP}
    MouseClick, right, 1586, 837
    RandSleep(30,60) ;
    MouseClick, right, 1639, 807
    RandSleep(50,100) ;
    Send, i
    MouseMove, 800, 540, 2

    RandSleep(x,y) {
    Random, rand, %x%, %y%
    Sleep %rand%
    }

  3. #3
    iMozzy's Avatar Member
    Reputation
    11
    Join Date
    Sep 2010
    Posts
    188
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That's what you use for your equip macro?

  4. #4
    endersama's Avatar Private
    Reputation
    1
    Join Date
    Dec 2009
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am working on one of these right now that will be customizable for different resolutions, windowed mode, and will allow configuration of specific slots for the items you want to switch in a profile. It will also be able to swap stash items to character slots.

    This is beta v0.1 (for Fullscreen or Windowed Fullscreen on 2560x1440 monitor)
    Z0MF - The Diablo 3 Gear-Swapping Application - YouTube

    #IfWinActive, Diablo III
    {
    !q::
    SetBatchLines -1
    SleepDuration = 1
    TimePeriod = 3 ;
    DllCall("Winmm\timeBeginPeriod", uint, TimePeriod)
    StartTime := A_TickCount

    DllCall("Sleep", UInt, SleepDuration) ; Must use DllCall instead of the Sleep command.

    MouseGetPos, d3LocX, d3LocY

    Send, i
    MouseClick, right, 1908, 820
    MouseClick, right, 1929, 957
    MouseClick, right, 1920, 1096
    MouseClick, right, 1962, 868
    MouseClick, right, 1961, 978
    MouseClick, right, 1972, 1095
    MouseClick, right, 2051, 867
    MouseClick, right, 2054, 952
    MouseClick, right, 2045, 1014
    MouseClick, right, 2044, 1074
    MouseClick, right, 2042, 1133
    Send, i

    MouseMove, d3LocX, d3LocY, 0

    DllCall("Winmm\timeEndPeriod", UInt, TimePeriod)
    return
    }
    Last edited by endersama; 05-29-2012 at 04:27 AM.

  5. #5
    iMozzy's Avatar Member
    Reputation
    11
    Join Date
    Sep 2010
    Posts
    188
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by endersama View Post
    I am working on one of these right now that will be customizable for different resolutions, windowed mode, and will allow configuration of specific slots for the items you want to switch in a profile. It will also be able to swap items to character slots in AH.

    This is beta v0.1 (for Fullscreen or Windowed Fullscreen on 2560x1440 monitor)
    Z0MF - The Diablo 3 Gear-Swapping Application - YouTube

    #IfWinActive, Diablo III
    {
    !q::
    SetBatchLines -1
    SleepDuration = 1
    TimePeriod = 3 ;
    DllCall("Winmm\timeBeginPeriod", uint, TimePeriod)
    StartTime := A_TickCount

    DllCall("Sleep", UInt, SleepDuration) ; Must use DllCall instead of the Sleep command.

    MouseGetPos, d3LocX, d3LocY

    Send, i
    MouseClick, right, 1908, 820
    MouseClick, right, 1929, 957
    MouseClick, right, 1920, 1096
    MouseClick, right, 1962, 868
    MouseClick, right, 1961, 978
    MouseClick, right, 1972, 1095
    MouseClick, right, 2051, 867
    MouseClick, right, 2054, 952
    MouseClick, right, 2045, 1014
    MouseClick, right, 2044, 1074
    MouseClick, right, 2042, 1133
    Send, i

    MouseMove, d3LocX, d3LocY, 0

    DllCall("Winmm\timeEndPeriod", UInt, TimePeriod)
    return
    }
    If you'll be releasing a beta for it, hit me up with it! I'd be glad to test it out for you

Similar Threads

  1. [Request]LUA unlock Macro to pick up a Flag
    By broly7 in forum WoW UI, Macros and Talent Specs
    Replies: 7
    Last Post: 09-10-2011, 04:01 AM
  2. Request for keyspammer macro's category on forums
    By CrazyCactuaR in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 12-21-2010, 11:55 AM
  3. [Request][Question] Exploration macro
    By Nyarly in forum WoW UI, Macros and Talent Specs
    Replies: 5
    Last Post: 05-19-2010, 05:56 AM
  4. [Request] Egg Basket Macro
    By Wat3rcolour in forum WoW Items & Quests
    Replies: 1
    Last Post: 04-28-2009, 02:33 AM
  5. Requesting a jump macro
    By Serul in forum WoW UI, Macros and Talent Specs
    Replies: 2
    Last Post: 03-09-2008, 03:31 AM
All times are GMT -5. The time now is 01:21 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search