I'm trying to get the Anubis' guns to be able to hold all class 10 weapons instead of class 9.
I'm confused. Don't the Anubis' guns hold class 6 weapons normally, not class 9?
In an unmodded game, this is what the Anubis' hardpoints are configured as:
hp_type = hp_gun_special_6, HpWeapon01, HpWeapon02, HpWeapon03, HpWeapon04, HpWeapon05, HpWeapon06
hp_type = hp_gun_special_5, HpWeapon01, HpWeapon02, HpWeapon03, HpWeapon04, HpWeapon05, HpWeapon06
hp_type = hp_gun_special_4, HpWeapon01, HpWeapon02, HpWeapon03, HpWeapon04, HpWeapon05, HpWeapon06
hp_type = hp_gun_special_3, HpWeapon01, HpWeapon02, HpWeapon03, HpWeapon04, HpWeapon05, HpWeapon06
hp_type = hp_gun_special_2, HpWeapon01, HpWeapon02, HpWeapon03, HpWeapon04, HpWeapon05, HpWeapon06
hp_type = hp_gun_special_1, HpWeapon01, HpWeapon02, HpWeapon03, HpWeapon04, HpWeapon05, HpWeapon06
It's kind of a tedious way of writing it (go figure; it's Microsoft). In English, what each line means is:
Class 6 guns can be mounted on hardpoint slots #1, #2, #3, #4, #5 and #6.
Class 5 guns can be mounted on hardpoint slots #1, #2, #3, #4, #5 and #6.
Class 4 guns can be mounted on hardpoint slots #1, #2, #3, #4, #5 and #6.
Class 3 guns can be mounted on hardpoint slots #1, #2, #3, #4, #5 and #6.
Class 2 guns can be mounted on hardpoint slots #1, #2, #3, #4, #5 and #6.
Class 1 guns can be mounted on hardpoint slots #1, #2, #3, #4, #5 and #6.
So, in order to make class 10 guns work, you'd have to tell it that it can mount class 7, 8, 9 and 10 guns on those slots. You would add this before the lines I quoted before (if your Anubis already accepts class 9 guns, then you should only add the first line):
hp_type = hp_gun_special_10, HpWeapon01, HpWeapon02, HpWeapon03, HpWeapon04, HpWeapon05, HpWeapon06
hp_type = hp_gun_special_9, HpWeapon01, HpWeapon02, HpWeapon03, HpWeapon04, HpWeapon05, HpWeapon06
hp_type = hp_gun_special_8, HpWeapon01, HpWeapon02, HpWeapon03, HpWeapon04, HpWeapon05, HpWeapon06
hp_type = hp_gun_special_7, HpWeapon01, HpWeapon02, HpWeapon03, HpWeapon04, HpWeapon05, HpWeapon06
I hope this helps.