#==============================================================================|# ** You only need to edit this part as it's about what this script does |#------------------------------------------------------------------------------|module DoubleX_RMVXA module YSA_CATB_Hotkey_Addon#------------------------------------------------------------------------------|# A custom keymap binding script maybe helpful for setting the keys below |#------------------------------------------------------------------------------| # Sets the hotkeys for selecting the party members that can input actions # The ith hotkey calls the ith party member # Nothing will happen if the corresponding party member can't input actions PARTY_HOTKEYS = [ :NUMPAD1, # 1st party member :NUMPAD2, # 2nd party member :NUMPAD3, # 3rd party member :NUMPAD4, # 4th party member :NUMPAD5, # 5th party member :NUMPAD6, # 6th party member :NUMPAD7, # 7th party member :NUMPAD8, # 8th party member :NUMPAD9, # 9th party member :NUMPAD0 # 10th party member ]#==============================================================================|