Question about 0.9.9.6 keybindings.lua
In previous version (up to 0.9.9.5) , i used to bind the (regular) shotgun and pistol to the PageUp and PageDown of my keyboard.
So in the keybindings.lua i had :
PAGEDOWN = function() command.quick_weapon('pistol') end,
PAGEUP = function() command.quick_weapon('shotgun') end,
And it worked very well.
In 0.9.9.6, all i obtain from this is "unknown command" , i have tried with :
PAGEDOWN = function() command.quick_weapon('pistol') end,
PAGEUP = function() command.quick_weapon('shotgun') end,
or
["PAGEDOWN"] = function() command.quick_weapon('pistol') end,
["PAGEUP"] = function() command.quick_weapon('shotgun') end,
All my other key binding are working, but i'm unable to make those 2 work in 0.9.9.6, is there a solution ?