Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem
Once downloaded and have AutoHotkey Dash open, Click New Script and name it "Gaming", then click Create, this will open a folder with the file you just made, right-click the file > Open with > Notepad
Paste this in
; ───────────────────────────────────────────────────────────
; MOUSE REMAPPER - GAMING FOR SCHEDULE 1
; ───────────────────────────────────────────────────────────
#Persistent
#SingleInstance Force
SetBatchLines, -1
CoordMode, ToolTip, Screen
autoClick := false
; ─── Button 4: Tap = Escape ────────────────────────────────
XButton2::
KeyWait, XButton1, T0.3
if !ErrorLevel {
Send {Escape}
}
return
; ─── Button 5: Tap = E, Hold = Shift + Auto Click ──────────
XButton1::
KeyWait, XButton1, T0.3
if ErrorLevel {
Send {Shift down}
autoClick := true
SetTimer, AutoClicker, 50
} else {
Send e
}
return
XButton1 Up::
Send {Shift up}
autoClick := false
SetTimer, AutoClicker, Off
return
AutoClicker:
if (autoClick) {
Click
}
return
; ─── Emergency Exit Shortcut ───────────────────────────────
^+q::ExitApp
Last you just have to save the notepad file and double-click the "Gaming" file to run it, you can turn it off at the bottom right of your desktop "^" show hidden items and you will see the AutoHotkey icon, but easier to just Pause Script.
(Paste it to ChatGPT and it will map whatever you want, I wouldn't recommend messing with the left and right click mouse buttons though).
Hope this helps.