Is it possible/viable to make the Talent Menu (part of window where the list of hotkey'd talents is located) automatically change pages depending on a modifier button being pressed?
Currently it's only toggleable by pressing PgDn/PgUp and I find myself constantly toggling between them because I don't remember on which number I've put something over there.
If I press Ctrl/Shift - obviously I don't want to execute "normal" 0-9 hotkey, but a Ctrl/Shift+0-9 one, so why not change page to show the Ctrl/Shift+0-9 ones? And when I release Ctrl/Shift or execute hotkey - change it back to the one that was shown before.
UI-related suggestion concerning Display Talent list
Moderator: Moderator
Re: UI-related suggestion concerning Display Talent list
Actaully it is kind supported, or rather, I tried it but it suffers fro ma few bugs that's why it's not enabled yet.
You can try it yourself, change game/modules/tome/class/Game.lua around lines 732 from:
to
It gets a bit mad if you switch windows while having one of those pressed :/
You can try it yourself, change game/modules/tome/class/Game.lua around lines 732 from:
Code: Select all
-- HOTKEY_HOTPAGE2 = function(sym, ctrl, shift, alt, meta, unicode, isup) self.player:setHotkeyPage(isup and 1 or 2) end,
-- HOTKEY_HOTPAGE3 = function(sym, ctrl, shift, alt, meta, unicode, isup) self.player:setHotkeyPage(isup and 1 or 3) end,
Code: Select all
HOTKEY_HOTPAGE2 = function(sym, ctrl, shift, alt, meta, unicode, isup) self.player:setHotkeyPage(isup and 1 or 2) end,
HOTKEY_HOTPAGE3 = function(sym, ctrl, shift, alt, meta, unicode, isup) self.player:setHotkeyPage(isup and 1 or 3) end,
[tome] joylove: You can't just release an expansion like one would release a Kraken XD
--
[tome] phantomfrettchen: your ability not to tease anyone is simply stunning
--
[tome] phantomfrettchen: your ability not to tease anyone is simply stunning

Re: UI-related suggestion concerning Display Talent list
AWESOME!
Thank you very much!
Thank you very much!