Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;;;;; Enable/disable all hotkeys ;;;;;
- ~*Enter::
- ~*NumpadEnter::
- Suspend, Permit
- if (bInChatRoom == True)
- return
- Suspend
- if (A_IsSuspended == true)
- {
- SetCapsLockState, Off
- }
- else
- {
- SetCapsLockState, On
- SoundPlay,*48
- }
- return
- ;; Escape will cancel chatting, so turn the hotkeys back on
- ~*Esc::
- Suspend, Permit
- if (bInChatRoom == True)
- return
- Suspend, Off
- SetCapsLockState, On
- return
- *F5::
- Suspend, Permit
- bInChatRoom := not bInChatRoom
- if (bInChatRoom == True)
- {
- Suspend, On
- SetCapsLockState, Off
- SoundPlay,*64
- }
- else
- {
- Suspend, Off
- SetCapsLockState, On
- SoundPlay,*48
- }
- return
- ; Hotkeys Remapper:
- ; Disable Windows Key and AltQQ GG
- Lwin::return
- <!q::return
- ; Mini-Map Toggles
- <!g::<!g
- <!r::return
- <!t::return
- <!a::return
- <!f::return
- ;;to enable formation toggle add ;; to the line above
- ; Inventory Keys:
- t::Send, {Numpad7}
- +t::Send, +{Numpad7}
- y::Send, {Numpad8}
- +y::Send, +{Numpad8}
- g::Send, {Numpad4}
- +g::Send, +{Numpad4}
- h::Send, {Numpad5}
- +h::Send, +{Numpad5}
- b::Send, {Numpad1}
- +b::Send, +{Numpad1}
- n::Send, {Numpad2}
- +n::Send, +{Numpad2}
- ; User Specified Hotkeys:
- CapsLock::Send, {Backspace}
- +CapsLock::Send, +{Backspace}
- Xbutton1::F1
- Xbutton2::Numpad7
- Mbutton::Tab
- ; these^ are middle mouse and extra mouse buttons
- ;;LCtrl::Space
- ;;Space::LCtrl
- ;To swap the Ctrl key with the Spacebar just remove the ;; from the 2 lines above
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement