This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; For my personal use, this script slightly changes how shift-clicking | |
| ; works in Diablo 4. | |
| ; | |
| ; The script requires a couple of key binding changes: | |
| ; 1. Move or Move/Interact must be bound to the Left Mouse Button. | |
| ; 2. Basic Skill must be bound to Mouse Button 5 (M5). | |
| ; | |
| ; After key bindings have been set, as you'd expect you can no longer | |
| ; perform a basic skill with left click. | |
| ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Requires AutoHotkey v2.0 | |
| #SingleInstance Force | |
| LogoutHotkey := "``" ; Keybind used to trigger the logout action | |
| ClientProcessName := "PathOfExileSteam.exe" ; Should be "PathOfExile_x64.exe" or "PathOfExileSteam.exe" | |
| CurrPortsName := "cports.exe" | |
| CurrPortsDownloadURL := "https://www.nirsoft.net/utils/cports-x64.zip" | |
| TestCurrPortsPath(Path) |
OlderNewer