Compat Aegis - Add Realistic Weights#11177
Open
SirPotoo wants to merge 17 commits intoacemod:masterfrom
Open
Conversation
PabstMirror
reviewed
Dec 17, 2025
Mike-MF
reviewed
Dec 17, 2025
PabstMirror
reviewed
Dec 17, 2025
some WeaponSlotsInfo and UGL_F were redundant
Was 'COMPONENT NAME' before
PabstMirror
approved these changes
Dec 19, 2025
Contributor
|
configs look good |
johnb432
reviewed
Dec 21, 2025
addons/compat_aegis/compat_aegis_realisticweights/CfgWeapons.hpp
Outdated
Show resolved
Hide resolved
addons/compat_aegis/compat_aegis_realisticweights/CfgWeapons.hpp
Outdated
Show resolved
Hide resolved
addons/compat_aegis/compat_aegis_realisticweights/CfgWeapons.hpp
Outdated
Show resolved
Hide resolved
addons/compat_aegis/compat_aegis_realisticweights/CfgWeapons.hpp
Outdated
Show resolved
Hide resolved
addons/compat_aegis/compat_aegis_realisticweights/CfgWeapons.hpp
Outdated
Show resolved
Hide resolved
addons/compat_aegis/compat_aegis_realisticweights/CfgWeapons.hpp
Outdated
Show resolved
Hide resolved
addons/compat_aegis/compat_aegis_realisticweights/CfgWeapons.hpp
Outdated
Show resolved
Hide resolved
Accidentally included the weight of an empty magazine Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
PabstMirror
reviewed
Feb 1, 2026
PabstMirror
approved these changes
Feb 1, 2026
BrettMayson
approved these changes
Feb 2, 2026
johnb432
requested changes
Feb 2, 2026
Contributor
There was a problem hiding this comment.
Addon is creating multiple UBC warnings:
20:08:01 Updating base class 'arifle_AKM_F'->'Rifle_Base_F', by 'z\ace\addons\compat_aegis\compat_aegis_realisticweights\config.bin/CfgWeapons/Aegis_arifle_AKM74_F/' ('build'/'ace_compat_aegis_realisticweights') (original 'A3_Aegis\weapons_f_aegis\rifles\akm74\config.bin')
20:08:01 Updating base class 'WeaponSlotsInfo'->'WeaponSlotsInfo', by 'z\ace\addons\compat_aegis\compat_aegis_realisticweights\config.bin/CfgWeapons/Aegis_arifle_AKM74_F/WeaponSlotsInfo/' ('build'/'ace_compat_aegis_realisticweights') (original 'A3_Aegis\weapons_f_aegis\rifles\akm74\config.bin')
20:08:01 Updating base class 'WeaponSlotsInfo'->'WeaponSlotsInfo', by 'z\ace\addons\compat_aegis\compat_aegis_realisticweights\config.bin/CfgWeapons/Aegis_arifle_AK74_gold_F/WeaponSlotsInfo/' ('build'/'ace_compat_aegis_realisticweights') (original 'A3_Aegis\weapons_f_aegis\rifles\akm74\config.bin')
20:08:01 Updating base class 'WeaponSlotsInfo'->'WeaponSlotsInfo', by 'z\ace\addons\compat_aegis\compat_aegis_realisticweights\config.bin/CfgWeapons/Aegis_arifle_AKS74_gold_F/WeaponSlotsInfo/' ('build'/'ace_compat_aegis_realisticweights') (original 'A3_Aegis\weapons_f_aegis\rifles\akm74\config.bin')
20:08:01 Updating base class 'Rifle_Short_Base_F'->'Rifle_Base_F', by 'z\ace\addons\compat_aegis\compat_aegis_realisticweights\config.bin/CfgWeapons/sgun_KSG_F/' ('build'/'ace_compat_aegis_realisticweights') (original '(A3_Aegis\weapons_f_aegis\shotguns\ksg\config.bin - no unload)')
20:08:01 Updating base class 'Rifle_Short_Base_F'->'Rifle_Base_F', by 'z\ace\addons\compat_aegis\compat_aegis_realisticweights\config.bin/CfgWeapons/sgun_M4_F/' ('build'/'ace_compat_aegis_realisticweights') (original '(A3_Aegis\weapons_f_aegis\shotguns\m4_ssas\config.bin - no unload)')
20:08:01 Updating base class ''->'WeaponSlotsInfo', by 'z\ace\addons\compat_aegis\compat_aegis_realisticweights\config.bin/CfgWeapons/Aegis_launch_RPG7M_F/WeaponSlotsInfo/' ('build'/'ace_compat_aegis_realisticweights') (original 'A3_Aegis\weapons_f_aegis\launchers\rpg7\config.bin')
Some can be easily addressed, but some can't, as Aegis itself is messing up inheritance.
My notes:
Aegis_arifle_AKS74_F causes UBC for Aegis_arifle_AKS74_gold_F, because Aegis_arifle_AKS74_F doesn't have its own WeaponSlotsInfo, inherits from Aegis_arifle_AKM74_F instead
sgun_KSG_F causes UBC, because sgun_KSG_F changes parent with Aegis (Rifle_Short_Base_F in A3_Aegis_Sounds_F_Aegis and Rifle_Base_F in A3_Aegis_Weapons_F_Aegis_Shotguns_M4_SSAS)
sgun_M4_F causes UBC, because sgun_M4_F changes parent with Aegis (Rifle_Short_Base_F in A3_Aegis_Sounds_F_Aegis and Rifle_Base_F in A3_Aegis_Weapons_F_Aegis_Shotguns_M4_SSAS)
Not sure what the way forward is for those 3.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When merged this pull request will:
Note
Recommend reviewing the mass values for consistency, calculations have been done with my own research