0 of 0

File information

Last updated

Original upload

Created by

Prophetbot

Uploaded by

ButterOfDeath

Virus scan

Safe to use

Tags for this mod

31 comments

  1. Danama11
    Danama11
    • premium
    • 0 kudos
    this only work for keys 1 to 4? i like to use qerf is there a way to do that?
  2. dmc456789xy
    dmc456789xy
    • member
    • 0 kudos
    This mod works well,but how to hide the mouse cursor when playing.
  3. PaxxWolf
    PaxxWolf
    • supporter
    • 2 kudos
    Having a very hard time to make the script work since I have an AZERTY keyboard. I tried to remap 1 2 3 4 with & é " ' but AutoHotKey doesn't like the é charactere and simply refuse to launch the script, any suggestion? Other than buy a QWERTY keyboard lol 
    1. ButterOfDeath
      ButterOfDeath
      • member
      • 1 kudos
      I tried and it seems to work for me by replacing 1, 2, 3, 4 with & é " '.

      Odds are there was a typo somewhere along the line?

      For example i had this for é specifically:

      $*é::
      {
      SendInput("{LCtrl down}{2 down}")
      return
      }

      $*é up::
      {
      SendInput("{LCtrl up}{2 up}")
      return
      }

      Hope it helps!
    2. PaxxWolf
      PaxxWolf
      • supporter
      • 2 kudos
      I tried to make a script by copy pasting the code lines you gave (wich was the same way I did it) and I still get this message :



      It's probably something on my end but idk much about this software. 
    3. ButterOfDeath
      ButterOfDeath
      • member
      • 1 kudos
      Woah what in tarnation?

      Check this link out, it seems like they got it working: https://stackoverflow.com/questions/24157617/autohotkey-and-azerty-how-to-remap-%C3%A8-%C3%A7-%C3%A0-keys-without-remapping-the-numbers

      I can try to put azerty on my keyboard but i'll be very busy for a day or two, odds are you're able to try faster than me, let me know!
    4. PaxxWolf
      PaxxWolf
      • supporter
      • 2 kudos
      I find the solution, your code was right and works, just not in V1, it only works in V2 for me at least. 
      Thanks for the help ! 
    5. CaillouVelu
      CaillouVelu
      • member
      • 0 kudos
      Hi, thanks for the script and for the tips for azerty keyboards, it works perfectly, here is the script for azerty keyboard with & é " and ' for skills, R for lantern, T for heal item and G for endurance item :

      #SingleInstance Force
      #HotIf WinActive("ahk_exe DD2.exe", )
      $*&::
      {
      SendInput("{LCtrl down}{1 down}")
      return
      }
      $*& up::
      {
      SendInput("{LCtrl up}{1 up}")
      return
      }
      $*é::
      {
      SendInput("{LCtrl down}{2 down}")
      return
      }
      $*é up::
      {
      SendInput("{LCtrl up}{2 up}")
      return
      }
      $*"::
      {
      SendInput("{LCtrl down}{3 down}")
      return
      }
      $*" up::
      {
      SendInput("{LCtrl up}{3 up}")
      return
      }
      $*'::
      {
      SendInput("{LCtrl down}{4 down}")
      return
      }
      $*' up::
      {
      SendInput("{LCtrl up}{4 up}")
      return
      }
      $*r::
      {
      SendInput("{LCtrl down}{r down}")
      return
      }
      $*r up::
      {
      SendInput("{LCtrl up}{r up}")
      return
      }
      $*t::
      {
      SendInput("{LCtrl down}{t down}")
      return
      }
      $*t up::
      {
      SendInput("{LCtrl up}{t up}")
      return
      }
      $*g::
      {
      SendInput("{LCtrl down}{g down}")
      return
      }
      $*g up::
      {
      SendInput("{LCtrl up}{g up}")
      return
      }
  4. teraldor
    teraldor
    • member
    • 0 kudos
    Don't work :

    ---- C:\Users\xxx\Desktop\dd2 (v2).ahk
    003: {
    005: {
    011: {
    017: {
    023: {
    029: {
    035: {
    041: {
    047: {
    051: Exit (3.17)

    Press [F5] to refresh.
    1. fufu181
      fufu181
      • member
      • 0 kudos
      Same here
    2. ButterOfDeath
      ButterOfDeath
      • member
      • 1 kudos
      Quite strange, can you try V1 too?

      For me both work without issues.
    3. Ahklyx13
      Ahklyx13
      • premium
      • 0 kudos
      Not sure if you still have the problem, but running the script as admin fixed it for me.
    4. Cohenat
      Cohenat
      • supporter
      • 6 kudos
      Running it as admin didnt help

      ---- I:\xxx\ahk script (ahk v2)-173-1-1711456803\dd2 (v2).ahk
      003: {
      005: {
      011: {
      017: {
      023: {
      029: {
      035: {
      041: {
      047: {
      051: Exit (6.69)
      Press [F5] to refresh.

      I will try the V1
  5. jadynkarn
    jadynkarn
    • premium
    • 0 kudos
    Last night I used my logitech mouse macro software to do this same thing so I could bind my extra mouse buttons to skills works great, and you never really have to take your hands off WASD, if anyone wants to know how I can show you its super easy with Ghub. Not sure if Razer would allow it as well.
    1. Oghier
      Oghier
      • premium
      • 0 kudos
      I'd like to know more.  I am generally familiar with GHub, but I haven't used it to customise this game (yet). Are you using recorded macros?
  6. ArMurazor
    ArMurazor
    • supporter
    • 1 kudos
    Here mine.

    numpad4::Send, {rctrl down}{pgup down}{pgup up}{rctrl up}
    numpad7::Send, {rctrl down}{home down}{home up}{rctrl up}
    numpad2::Send, {rctrl down}{F1 down}{F1 up}{rctrl up}
    numpad3::Send, {rctrl down}{F2 down}{F2 up}{rctrl up}
    XButton1::Send, {rctrl down}{XButton1 down}{XButton1 up}{rctrl up}
    XButton2::Send, {rctrl down}{XButton2 down}{XButton2 up}{rctrl up}

    numpad keys are the keys in use.
    pgup, home, F1, F2 are the keys set in game.
    Change rctrl for lctrl if you prefer left control key.

    Don't map RButton and LButton (right and left mouse buttons). Or you'll have issues to use Windows.
    Launch the .ahk script in administrator mode.
    1. ButterOfDeath
      ButterOfDeath
      • member
      • 1 kudos
      That works, but it prevents you from holding down the skill buttons.

      Also you can limit the script to only function inside the game window!
  7. ArMurazor
    ArMurazor
    • supporter
    • 1 kudos
    No delay set with control up/down keys ?
    No control keys keep activated ?
    1. ButterOfDeath
      ButterOfDeath
      • member
      • 1 kudos
      Sorry i don't understand the questions.

      What the script does is press Ctrl+1/2/3/4 when you press 1/2/3/4, then releases both of them at the same time.

      This is useful for some skills you may want to charge or hold before using.
  8. SpaceShipEarth
    SpaceShipEarth
    • member
    • 2 kudos
    great mod
  9. HeyJoeHUN81
    HeyJoeHUN81
    • supporter
    • 13 kudos
    Following, it's almost what I was looking for! :)
  10. senseirain
    senseirain
    • member
    • 0 kudos
    Would be nice if it's ingame mod
    1. ButterOfDeath
      ButterOfDeath
      • member
      • 1 kudos
      I agree, although i lack the time to figure that out.

      Hopefully someone else makes it!