0 of 0

File information

Last updated

Original upload

Created by

Maestern

Uploaded by

Maestern

Virus scan

Safe to use

Tags for this mod

17 comments

  1. 1337sh33p
    1337sh33p
    • premium
    • 0 kudos
    Thanks! This is really saving my wrists. For anyone interested in an autohotkey 2.0 version I updated the syntax:

    #Requires AutoHotkey v2.0
    #SingleInstance Force

    ~MButton::
    {
        state := GetKeyState('CapsLock', 'T')

        if state
        {
            MouseGetPos(&ToX, &ToY)
            IniWrite(ToX, 'DragonDrop.ini', 'Targeting', 'DestinationX')
            IniWrite(ToY, 'DragonDrop.ini', 'Targeting', 'DestinationY')
        } else
        {
            ToX := IniRead('DragonDrop.ini', 'Targeting', 'DestinationX')
            ToY := IniRead('DragonDrop.ini', 'Targeting', 'DestinationY')
            SendMode('Event')
            while GetKeyState('MButton')
            {
                MouseGetPos(&FromX, &FromY)
                Send '{Shift Down}'
                Click('L', FromX, FromY)
                Sleep(15)
                Click('L', ToX, ToY)
                Send '{Shift Up}'
                MouseMove(FromX, FromY)
            }
        }
    }

  2. zelurker
    zelurker
    • member
    • 11 kudos
    auto hotkey is windows only of course, but the idea is good, the inventory really needs some improvement in openmw, like a way to sort by weight whey you keep on being overloaded all the time !
  3. cameronamas
    cameronamas
    • supporter
    • 0 kudos
    This is fantastic! Great for keeping my things organized in a TIMELY manner. Thank you!
  4. SleepyMeezer
    SleepyMeezer
    • member
    • 1 kudos
    I can't seem to get the mod to function as intended. When I press capslock on then the middle mouse button it acts like an auto clicker. It doesn't stop for around 30 seconds and capslock flickers then turns off and turns back on after the auto clicking stops. If I keep capslock off the middle mouse button picks up and drops an item as long as I keep it pressed down. It also moves my mouse position to where it was previously.

    I have the v1.1.37.01 AutoHotkey and the mod in their own folder together with them separated. I've tried with both zipped and unzipped folders and the results are the same. I don't know if I am doing something wrong to make the mod not be able to transfer items between containers.
  5. whizbangx
    whizbangx
    • member
    • 0 kudos
    My escape key had stopped working completely for my game after I downloaded this? ..Do you by any chance know how to fix this..? Oh and I can't hit the middle mouse button to scroll through pages online because it keeps triggering it
  6. zaper123123
    zaper123123
    • member
    • 1 kudos
    Really excellent little script - thanks a lot for making it.

    For those that want to toggle this script of and on adding the following to the script should work - also to note that if you are trying to use this these days you'll need to install the legacy AHK - seems to work on the main legacy 1.1 version. 

    ~F2::
    Suspend ;Suspend Hotkeys off/on
    Pause,, 1 ;Pause Script off/on
    Return

    You can set "F2" to whatever you like - F2 certainly isn't always the perfect choice given that it opens some mod interfaces.
  7. Macbone
    Macbone
    • supporter
    • 17 kudos
    I love this! I was looking for an OpenMW mod to replace the MWSE mod inom, and this works great!
  8. deleted123617333
    deleted123617333
    • account closed
    • 4 kudos
    very nice thank u :3
  9. kiramarsh21
    kiramarsh21
    • supporter
    • 3 kudos
    Won't let me set a destination at all, just always puts the items on the ground.
    1. Maestern
      Maestern
      • supporter
      • 1 kudos
      Could you let me know your OS, and could you verify the steps you took to set the destination?
    2. Maestern
      Maestern
      • supporter
      • 1 kudos
      Also, did you run the script in admin mode, and is it installed outside of privileged folders aka program files?
    3. kiramarsh21
      kiramarsh21
      • supporter
      • 3 kudos
      I'll try admin mode, might have missed that. Windows 7, I installed the hotkey program to my program files but your folder containing the script and ini is on the desktop.
    4. kiramarsh21
      kiramarsh21
      • supporter
      • 3 kudos
      RIP I didn't see the part where this *only* works for openMW, sorry.
    5. Maestern
      Maestern
      • supporter
      • 1 kudos
      Ah, no worries. There's conceivably ways to modify it for vanilla morrowind but it adds a complication in the form of middle steps of clicking.
  10. deleted34438890
    deleted34438890
    • account closed
    • 11 kudos
    Neat idea!

    Personally, I think it'd make more sense for the OpenMW team to implement a quick move system a la Oblivion; Shift + Left-Click to quickly transfer items.
    1. Maestern
      Maestern
      • supporter
      • 1 kudos
      I agree! I definitely hope this mod is eventually unnecessary. When starting MW the first time I was...really surprised I couldn't find pre-existing solutions to this issue.
    2. kuyondo
      kuyondo
      • member
      • 37 kudos
      You may create a feature ticket in the bugs section of openmw.org