/////////////// /////////////// // Guild Wars 2 Key Bindings for XBox 360 or PS3 controller // /////////////// /////////////// //Mouse Buttons Mouse.LeftButton = XInput.LeftShoulder //Left Click Mouse.RightButton = XInput.RightShoulder //Right Click //Movement (WASD with Left Stick and Cursor with Right Stick) Key.W = (XInput.LeftStickY > .30) //Forward Key.S = (XInput.LeftStickY < -.30) //Backward Key.D = (XInput.LeftStickX > .30) //Strafe Right Key.A = (XInput.LeftStickX < -.30) //Strafe Left //Key.Space = XInput.RightThumb //Jump var.dz = 0.04 // 0.0 - 1.0 Stick Deadzone var.spd = 35 // 0 - 100 Sensitivity if XInput.RightStickY < -(var.dz) or XInput.RightStickY > (var.dz) Mouse.DirectInputY = Mouse.DirectInputY + (var.spd)*(XInput.RightStickY * -1) endif if XInput.RightStickX < -(var.dz) or XInput.RightStickX > (var.dz) Mouse.DirectInputX = Mouse.DirectInputX + (var.spd)*(XInput.RightStickX) endif //1-0 and Weapon Swap Template [360] [PS3] //Key.Console = XInput.Back //Weapon Swap Start or Select //Key.One = XInput.X //Skill 1 [X] or [X] //Key.Two = XInput.A //SKill 2 [A] or [Square] //Key.Three = XInput.B //Skill 3 [B] or [O] //Key.Four = XInput.Y //Skill 4 [Y] or [Tri] Key.Five = XInput.RightTrigger //Skill 5 Right Trigger Key.Six = XInput.LeftTrigger //Skill 6 Left Trigger //Key.Seven = XInput.Left //Skill 7 DPad Left //Key.Eight = XInput.Down //Skill 8 DPad Down //Key.Nine = XInput.Right //Skill 9 DPad Right //Key.Zero = XInput.Up //Skill 0 DPad Up //F-Keys, Jump, and Dodge if XInput.LeftThumb then Key.Space = null //Jump Toggle Unbind Key.L = XInput.RightThumb //Dodge LeftThumb + RightThumb Key.F1 = XInput.X //F1 LeftThumb + A Key.F2 = XInput.A //F2 + X Key.F3 = XInput.B //F3 + B Key.F4 = XInput.Y //F4 + Y endif if not XInput.LeftThumb then Key.L = null //Dodge Toggle Unbind Key.Space = XInput.RightThumb //Jump Right Thumb Key.One = XInput.X //Rebind to Skill 1 Key.Two = XInput.A //Rebind to Skill 2 Key.Three = XInput.B //Rebind to Skill 3 Key.Four = XInput.Y //Rebind to Skill 4 endif //Menus Key.F = XInput.LeftThumb //Interact Left Thumb Click Key.I = XInput.Start //Inventory Start if XInput.Start then Key.M = XInput.Back //Map Start + Back or Select Key.H = XInput.Down //Hero + DPad Down Key.G = XInput.Left //Guild + DPad Left Key.B = XInput.Right //WvW + DPad Right Key.J = XInput.Up //Mail bind to J + DPad Up endif if not XInput.Start then Key.Seven = XInput.Left //Rebind to Skill 7 Key.Eight = XInput.Down //Rebind to Skill 8 Key.Nine = XInput.Right //Rebind to Skill 9 Key.Zero = XInput.Up //Rebind to Skill 0 Key.Console = XInput.Back //Rebind to Weapon Swap endif //Special Instructions // Action: Binding: [360] [PS3] // // Skill 1 ------------------- [X] or [Square] // Skill 2 ------------------- [A] or [X] // Skill 3 ------------------- [B] or [O] // Skill 4 ------------------- [Y] or [Tri] // Skill 5 ------------------- [R2] or [R2] // Skill 6 ------------------- [R1] or [R1] // Skill 7 ------------------- DPad Left or DPad Left // Skill 8 ------------------- DPad Down or DPad Down // Skill 9 ------------------- DPad Right or DPad Right // Skill 0 ------------------- DPad Up or DPad Up // // F1 ------------------- Left Stick Click+[X] or [Square] // F2 ------------------- Left Stick Click+[A] or [X] // F3 ------------------- Left Stick Click+[B] or [O] // F4 ------------------- Left Stick Click+[Y] or [Tri] // // Jump ------------------- Right Stick Click // Interact------------------- Left Stick Click // Dodge ------------------- Left Stick Click+Right Stick Click // Weapon Swap --------------- Back or Select // // // W,A,S,D ------------------- Left Joystick // // // // // // // Menu: // // Inventory ----------------- Start // Map ------------------- Start+Back or Start+Select // Hero ------------------- Start+DPad Down // Guild ------------------- Start+DPad Left // WvWvW ------------------- Start+DPad Right // Mail ------------------- Start+DPad Up // // // Mouse: // // Left Click ---------------- [L1] or [L1] // Right Click --------------- [R1] or [R1] // Camera ------------------- Right Joystick //