When I try to assign a skill to hotkey 32 ([shift]+8) it instead assigns it to hotkey 31 ([shift]+7).
I even tried reconfiguring hotkey 32 to a different keyboard press ([shift]+a) and it still does the same thing. I haven't gone through and checked every hotkey to see if this happens with any others--it's just my skill layout happened to run into this particular problem.
[b19] Hotkey 32 can not be assigned
Moderator: Moderator
[b19] Hotkey 32 can not be assigned
Last edited by smuglapse on Tue Feb 01, 2011 3:34 am, edited 1 time in total.
Re: Hotkey 32 can not be assigned
Is that in beta 19, or some older version? I remember that bug being present a couple releases ago.
-
- Spiderkin
- Posts: 454
- Joined: Sat May 15, 2010 3:09 am
Re: Hotkey 32 can not be assigned
There used to be a typo in game.lua that looked responsible for this bug, but fixing the typo a few betas back didn't fix the bug. It's been mentioned on the forums quite a few times, but seems unkillable. I dub this bug "Agent Smith."
-
- Spiderkin
- Posts: 454
- Joined: Sat May 15, 2010 3:09 am
Re: Hotkey 32 can not be assigned
I've been digging around, and found more occurrences of this typo:
It's present in all of these files:
t-engine4/game/engines/default/engine/dialogs/UseTalents.lua
t-engine4/game/engines/default/engine/dialogs/ShowEquipInven.lua
t-engine4/game/modules/tome/dialogs/UseTalents.lua
t-engine4/game/modules/example/class/Game.lua
t-engine4/game/modules/example_realtime/class/Game.lua
edit: if it turns out that I've finally killed this bug after nineteen betas, I want a Susramanian statue in Last Hope!
Code: Select all
HOTKEY_THIRD_6 = function() self:defineHotkey(30) end,
HOTKEY_THIRD_7 = function() self:defineHotkey(31) end,
HOTKEY_THIRD_8 = function() self:defineHotkey(31) end,
HOTKEY_THIRD_9 = function() self:defineHotkey(33) end,
t-engine4/game/engines/default/engine/dialogs/UseTalents.lua
t-engine4/game/engines/default/engine/dialogs/ShowEquipInven.lua
t-engine4/game/modules/tome/dialogs/UseTalents.lua
t-engine4/game/modules/example/class/Game.lua
t-engine4/game/modules/example_realtime/class/Game.lua
edit: if it turns out that I've finally killed this bug after nineteen betas, I want a Susramanian statue in Last Hope!
Re: Hotkey 32 can not be assigned
Yep. Updated title.greycat wrote:Is that in beta 19...
Re: [b19] Hotkey 32 can not be assigned
fixed
[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

-
- Wyrmic
- Posts: 216
- Joined: Tue Mar 31, 2009 7:45 pm
- Location: New Mexico
Re: [b19] Hotkey 32 can not be assigned
Bravo I say, Bravo!