I have my Logitech G13 broken down into three different states: M1 (default), M2 (red) and M3 (blue). By default the gamepad will always be in the M1 state. However, I have the Logteich software setup to allow me to momentarily shift into M2 and M3 while I have the two buttons below the thumbsticks pressed down. That way, I don't have to manually press the M2 or M3 buttons at the top of the keypad to access any of the red or blue buttons. The colors by the way, correspond to the LCD backlight coloring for each state as well as my N52 setup. This is generally how I tried to organize each of the three states:
M1 (Default): Frequjently used items, combat abilities and regular shift modifiers (Shift, Control and Alt)
M2 (Red): Blizzard interface elements such as the guild screen, map, professions as well as party targets (F1 through F5). 
M3 (Blue): Raid icons, auras, screenshotting, camera views and other stuff.
The new gamepad software, version 6, will allow you to assign a button that will toggle you into any of the M states by right clicking on a button and going to Edit > Fuction. If you are using the old software, version 3.0.6, you will need to add a script (included below). FYI: I have G23 assigned to M2 and G24 assigned to M3. If you prefer another configuration, that shouldn't be too hard to change.
function OnEvent(event, arg, family)
if ( family == "lhc" ) then
if ( event == "G_PRESSED" ) then
if ( arg == 23 ) then
SetMKeyState(2, family);
end
if ( arg == 24 ) then
SetMKeyState(3, family);
end
elseif ( event == "G_RELEASED" ) then
if ( arg == 23 ) then
SetMKeyState(1, family);
end
if ( arg == 24 ) then
SetMKeyState(1, family);
end
end
end
end
Keys G9, G10 and G11 are where I naturally rest my ring, middle and index fingers. I tried to keep important abilities centralized around this area. It's worth noting that, to avoid any possible EULA violations, I don't use the G13 to script anything that couldn't already be macro'd in game. I have quite a few items bound to awkward key combinations in game (Shift + Control + F1 to toggle Recount for example). Not so easy to press on a normal keyboard, trivial to bind on a gamepad. Also, I have jump, autorun and 4 or 5 other things bound to my mouse.
If anyone is interested, my configuration file is included in the zip file posted below. Beware, it's highly customized to my awkward in-game keybindings...
| Attachment | Size |
|---|---|
| G13 WoW.zip | 4.51 KB |

Comments (3)
Hey Keiya, rest assured that there are some of us Ret Pallys out here with Logitech G13s that are looking for this information. I actually got my G13 as a Christmas present last year, and it's been sitting on my shelf for 10 months because I didn't want to set aside time to map out my keybindings. :) I had a free Saturday so I finally went ahead and took on the task. I've made some progress, but seeing how another Ret Pally is doing it is extremely helpful.
It's tough to find anything regarding Ret Pally keybindings on the web; I find that we can be a red-headed stepchild of a spec in general, so looking for G13-specific information is certainly difficult. I've imported your Profile into my gamepad and I'm going to have a look at it. I like the M2/M3 usage; my initial mapping used only M1, with Bartender4 arranging bars on my screen to mimic the layout of the G13. But easy access to the M2/M3 configurations might change all that up.
What macros do you use, if any? I nabbed a few off of ElitistJerks, but they're very proc-specific so I'm trying to balance their placement on the pad vs. their out-of-instance usefulness.
Cheers!
-mdj
Hey there! The only macro that I am using in my main DPS rotation at the moment is this one:
I bound both of my trinket slots (armor slots 13 & 14) to Crusader Strike so that any on-use abilities would pop as soon as the cooldown as up. 'startattack' will attempt to acquire and attack the closest hostile mob if you have no current target. Other than that, I haven't really found the need to macro out too many other abilities since the gamepad makes it pretty easy to bind and access just about all of my spells without having to manually click with my mouse or awkwardly reach across the keyboard to hit something.
Getting used to playing with the gamepad/memorizing the bindings was a bit of a pain though.
Yeah, that's what I'm dealing with right now. If you see an 85 Paladin getting killed by low-level mobs in Ashenvale, that's me not being able to figure out my bindings.
The macros in EJ generally center around kicking off Zealotry+Whatever at the same time to avoid two clicks, and the same for Avenging Wrath+Hammer of Wrath and Inquisition+Crusader Strike.
How do you have your hotbar set up?
Post new comment