Th processes may take some time to code. However you could do something like this (I don't have the most tecent SCP files I have the original source):
/*Change mask regions for scrollable lines from Primary/Secondary
to item/catagores slot lists.*/
#define ICON_Selection_Slot_0 ##
#define ICON_Selection_Slot_1 ##
#define ICON_Selection_Slot_2 ##
#define ICON_Selection_Slot_3 ##
#define ICON_Catagory_Slot_0 ##
#define ICON_Catagory_Slot_1 ##
#define ICON_Catagory_Slot_2 ##
#define ICON_Catagory_Slot_3 ##
/*Change mask regions for weapon outload buttons to
selection outload buttons*/
#define ICON_Ship_Selection_0 ##
#define ICON_Ship_Selection_1 ##
#define ICON_Ship_Selection_2 ##
#define ICON_Ship_Selection_3 ##
#define ICON_Ship_Selection_4 ##
#define ICON_Ship_Selection_5 ##
#define ICON_Ship_Selection_6 ##
#define ICON_Ship_Selection_7 ##
#define ICON_Ship_Selection_8 ##
#define ICON_Ship_Selection_9 ##
#define ICON_Ship_Selection_10 ##
#define ICON_Ship_Selection_11 ##
#define ICON_Ship_Selection_12 ##
This would be in the MissionWeaponChoice.h file.
//Change number of weapon buttons
#define NUM_WEAPON_BUTTONS 12
//Change overhead coords
static int Wl_bank_count_draw_flags[MAX_WL_WEAPONS] = {
0, 0, 0, 0, 0, 0 // primaries -- dont draw counts
1, 1, 1, 1, 1, 1 // secondaries -- do draw counts
};
//Chande Plist's and Slist's
int Slist[MAX_WEAPON_TYPES]; // used to track scrolling of primary icon list
int Slist_start, Slist_size;
int Clist[MAX_WEAPON_TYPES]; // used to track scrolling of primary icon list
int Clist_start, Clist_size;
//I'm not sure how this would be edited but it would have to change
//I'm not sure but some of this could be deleted.
int region_index = ICON_PRIMARY_0+index;
if ( index > 3 ) {
region_index = ICON_SECONDARY_0 + (index - 4);
}
if ( Wl_mouse_down_on_region != region_index ) {
return;
}
if ( index < 4 ) {
weapon_class = Plist[Plist_start+index];
} else {
weapon_class = Slist[Slist_start+index-4];
}
this is just a few tems that would be changed. I'm sh=ure that there is

more but. I don't have the time to check everywhere right now. maybe later.