Author Topic: cash transfer/weapon groups  (Read 166 times)

0 Members and 2 Guests are viewing this topic.

Offline CHHs Cyan

  • MechWarrior
  • **
  • Posts: 239
  • Karma: 12
  • c-bills in my hand, or blood on my gauss
cash transfer/weapon groups
« on: March 13, 2010, 08:40:17 PM »
just a observation on my part, im sure others have noticed it

since V 2.0 , now that you can transfear cash while in a mech or vehicle the cash transfear selection (the arrow keys and enter system) interfer with the weapon groups .
as in they select and deselect weapons from the menue while your sending someone cash as both menues are active at once
I agree that money doesn't bring happiness, all I ask is a chance to prove it.

Offline 7.[WD]Poldi

  • Lance Sergeant
  • **
  • Posts: 411
  • Karma: 27
  • Col. 7th Reg. Wolfs Dragoons
    • 7th Wolf Dragoons HQ
Re: cash transfer/weapon groups
« Reply #1 on: March 13, 2010, 10:29:54 PM »
there are 2 different actions in the actionmap for confirming the CBills and the weapon selection, but sadly they are both set to "Enter" key.

Solution for me was to set
Code: [Select]
  <action name="Confirm_CBill_Menu" onPress="1" onRelease="1">
   <key name="np_enter"/>
  </action>
in the "player" section of actionmaps.xml, making NumPad-Enter the key for confirming CBill transfers.

Also you could set the numpad-numbers to act as keys in the CBill menu yo you have it all at one hand.
Code: [Select]
  <action name="Next_CBill_Option" onPress="1" onRelease="1">
   <key name="down"/>
   <key name="np_2"/>
  </action>
  <action name="Prev_CBill_Option" onPress="1" onRelease="1">
   <key name="up"/>
   <key name="np_8"/>
  </action>
  <action name="Choose_CBill_Amount" onPress="1" onRelease="1">
   <key name="right"/>
   <key name="np_6"/>
  </action>
  <action name="Choose_CBill_Player" onPress="1" onRelease="1">
   <key name="left"/>
   <key name="np_4"/>
  </action>



Offline CHHs Cyan

  • MechWarrior
  • **
  • Posts: 239
  • Karma: 12
  • c-bills in my hand, or blood on my gauss
Re: cash transfer/weapon groups
« Reply #2 on: March 14, 2010, 02:06:29 AM »
way ahead of you.
but thanks for posting the solution for others , the community is great here \0/
I agree that money doesn't bring happiness, all I ask is a chance to prove it.