Close
Showing results 1 to 5 of 5

Threaded View

  1. #3

    Default

    Hello Condorf,

    Here are some ideal scripts that are great for Diablo 3 under HotkeyNet. I have spent countless hours writing/finding scripts under HKN for Diablo 3 specifically. I have many other hotkeys that you may want to try if your interested beyond the ones below as well once you have the basic script all done. (auto identify, quick selling for 4 characters, single button ShockNadoShards ext...) Please understand (however unlikely) some of these hotkeys could get you banned as they may infringe on the TOS so please use at your own risk.


    1. The right click hotkey below will execute 1 right click of the mouse while holding shift down for you.

    Code:
     //////////Right Click//////////
    
    <Hotkey RButton>         
    <PassThrough>
    <SendLabel w1>
    <KeyDown Shift>
    <ClickMouse Down RButton NoRestore>
    <HotkeyUp RButton>
    <PassThrough>
    <SendLabel w1>
    <KeyUp Shift>
    <ClickMouse Up RButton NoRestore>
    2. The left click hotkey below will not only execute a single click for movement but the left mouse button can be held down to allow free movement via <PassThrough>. This was the biggest roadblock to D3 when I started using HKN at first. Without passthrough you are forced to click every single movement which will drive you nuts.


    Code:
    //////////Left Click//////////
    
    
    <Hotkey LButton>          
    <PassThrough>
    <SendLabel w1>
    <ClickMouse Down LButton NoRestore>
    <SendLabel w1>
    <HotkeyUp LButton>
    <PassThrough>
    <SendLabel w1>
    <ClickMouse up LButton NoRestore>
    3. The hotkey below is also left click however it has a modifier for shift. This allows HKN to recognize those times when you want to hold shift while clicking the left mouse button. This can be duplicated for a right click + shift if you need.

    Code:
     //////////Left Mouse Click + Shift//////////
    
    <Hotkey LShift LButton> 
    <PassThrough>
    <SendLabel w1>
    <ClickMouse Down LButton NoRestore> 
    <KeyDown LShift>
    
    
    <HotkeyUp LShift LButton>
    <PassThrough>
    <SendLabel w1>
    <ClickMouse Up LButton NoRestore> 
    <KeyUp LShift>

    4. The hotkey below is for your mouse wheel forward. I have mine set to execute key S which is my buffs keybind (storm armor).

    Code:
    //////////Mouse Wheel Forward (BUFFS) //////////
    
    <Hotkey WheelForward>         
    <SendLabel w1>
    <Key S>
    5. This hotkey is your OOPS! middle mouse button, press this and it will cancel all scripts and toggle hotkeys off until you press it again. It basically stops whatever hotkeynet is doing and shuts off hotkeys until you press it again. I use this to stop hotkeynet if it is going haywire and have it built into every single script I make.

    Code:
    ////////MButton cancel/toggle////////
    
    <hotkey Mbutton>      
    <SendPC Local>
    <Cancel>
    <Togglehotkeys>
    6. This hotkey will allow you to set your gamma higher as D3 will not let you in windowed mode. Higher is darker, lower is brighter.

    Code:
    ////////////Set Gamma////////////
    
    <Hotkey G>           
    <SetGamma 1.00>
    7. This hotkey will hit the craft item button over and over until you click the MButton cancel/toggle hotkey. You need to have all your materials ready and open the crafting screen (Blacksmith, Jewel) and select the item to craft. Hit F3 and it will craft until you stop it. You will need to get the screen coordinates for the crafting button to use this if your running a resolution different than 1600x900. A great free program for getting monitor X/Y coordinates is cursor position on CNET:
    http://download.cnet.com/Cursor-Posi...-75449858.html

    Code:
    ////////////Crafting Loop////////////
    
    <Hotkey F3>           
    <SendFocusWin>
    <ClickMouse LButton 201 656 NoRestore>
    <Wait 3500>
    <Dohotkey Hotkey F3>
    Last edited by rexstopher : 04-08-2013 at 09:48 AM Reason: use code tags to wrap code

Tags for this Thread

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •