RGFrog wrote...
Hazuzi wrote...
Try to just remove the comma.
Bindings=( Name="NumPadZero", Command="exec Resources.txt" Control=False | Shift=True | Alt=False )
@ Inge Shepard
If I use it that way the other two buttons shift and alt aren't recognized and being left out.
@My note was just a suggestion! I don't think you can use all three, Ctrl,Shift and Alt.
How is this working: Control=False Shift=True Alt=False?
Same result as with the commas so no change unfortunately.
I changed it a few times now could it be that the c.ini is just messed up and I should start from scratch ?
Also I changed some of the Bindings to the PageUp Button (the 3 "Super"-Weapons; Revenant, Claymore and Widow) but then the Alt Button wasn't working with it.
Maybe these (Shift + Numpad and Alt + PageUp/Down) are other hotkeys for windows and as such not recognized during a fullscreened Program ??
Nope, has nothing to do with any of this. Shift is split into two recognized keys.
Under [SFXGame.SFXGameModemanager]
KeyNames=(Key="LeftShift", Name=174717)
KeyNames=(Key="RightShift", Name=174801)
You'll need to use either LeftShift or RightShift, whichever is unbound (leftshift is a default key binding for sprint, vehicle jump, etc.)
using a comma to sepperate the ctrl, alt, shift = (true/false) is fine. Using a pipe, | (shift+backslash), is a "bitwise or" statement and shouldn't be used in this case.
You can find all the correct key names under [SFXGame.SFXGameModemanager].
Thanks RGFrog for the continued info
Well in my layout the shift key is opening the command menu (power wheel in console terms), should I write LeftShiift/RightShift to get it to work ??
Because I have bound 3 txt-Files to the "End"-key and there the left "Shift"-key is working without problems.
I have bound: Shift+End - gives me Adrenaline Rush (the command is in a txt-file; Ctrl+End - gives me Tactical Cloak and Alt+End - gives me Power Armor (Tech Armor evolved)
Can you give me the name for "Enhanced Cloak" or should I just write "...Cloak_Evolved2" ??
Well these three bindings are working but when i try to get a binding with a numpad button like
Bindings=( Name="NumPadEight", Command="setintbyname Wpn_SuperAssaultRifle 2", Control=True )
Bindings=( Name="NumPadEight", Command="setintbyname Wpn_SuperShotgun 2", Shift=True )
Bindings=( Name="NumPadEight", Command="setintbyname Wpn_SuperSniperRifle 2", Alt=True )
I tried these three with all three keys listed, too, but it didn't work either.
But this is working:
Bindings=( Name="F6", Command="set SFXGameContentDLC_Desert.SFXWeapon_DesertAssaultRifle BurstRounds 0", Control=False, Shift=False, Alt=False )
Bindings=( Name="F6", Command="set SFXGameContentDLC_Desert.SFXWeapon_DesertAssaultRifle BurstRounds 1", Control=True, Shift=False, Alt=False )
Bindings=( Name="F6", Command="set SFXGameContentDLC_Desert.SFXWeapon_DesertAssaultRifle BurstRounds 5", Control=False, Shift=True, Alt=False )
Bindings=( Name="F6", Command="set SFXGameContentDLC_Desert.SFXWeapon_DesertAssaultRifle BurstRounds 3", Control=False, Shift=False, Alt=True )
All 4 Bindings work (btw these are for the setting the Mattock to Full Auto, Single Shot, Volley(5 Shots) and Burst Fire(3 Shots) and they work really fine and the muzzle flash is just fine after a re-equip too so that is okay.
But the more important thing i want to get this to work, so i guess i try to write it as Left/RightShift first huh ??