Fixed bag binds to open all, set scrollwheel to follow and autorun when using the camera binds

This commit is contained in:
Imbus 2023-10-29 12:46:48 +01:00
parent c36efdd65e
commit 07035b02f7

View file

@ -5,7 +5,7 @@ local myBinds = {
["D"] = "STRAFERIGHT", ["D"] = "STRAFERIGHT",
-- Character and bag toggles, since c and b are used for strafing -- Character and bag toggles, since c and b are used for strafing
["F1"] = "TOGGLEBACKPACK", ["F1"] = "OPENALLBAGS",
["F2"] = "TOGGLECHARACTER0", ["F2"] = "TOGGLECHARACTER0",
-- Action Bar 1 -- Action Bar 1
@ -83,6 +83,9 @@ local cameraBinds = {
-- Remove zoom from mousewheel -- Remove zoom from mousewheel
["-"] = "CAMERAZOOMOUT", ["-"] = "CAMERAZOOMOUT",
["+"] = "CAMERAZOOMIN", ["+"] = "CAMERAZOOMIN",
["MOUSEWHEELUP"] = "FOLLOWTARGET",
["MOUSEWHEELDOWN"] = "STARTAUTORUN",
} }
-- Unsets a binding, if it exists -- Unsets a binding, if it exists