Last active
November 27, 2023 22:25
-
-
Save jeffday/925630cf681706bfc2a358daae3b2935 to your computer and use it in GitHub Desktop.
TheFix .338 ammo override for EDO_WEAPONS
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
| class CfgPatches | |
| { | |
| class TheFix338Override | |
| { | |
| requiredVersion = 0.1; | |
| requiredAddons[] = { | |
| "DZ_Data", | |
| "DZ_Weapons_Firearms", | |
| "DZ_Weapons_Magazines", | |
| "BO_TheFix" | |
| }; | |
| ammo[] = {}; | |
| }; | |
| }; | |
| class CfgMods | |
| { | |
| class TheFix338Override | |
| { | |
| dir = "TheFix338Override"; | |
| picture = ""; | |
| action = ""; | |
| hideName = 1; | |
| hidePicture = 1; | |
| name = "TheFix338Override"; | |
| author = "acanthogammarus"; | |
| authorID = "0"; | |
| version = "1.0"; | |
| extra = 0; | |
| type = "mod"; | |
| inputs = ""; | |
| dependencies[]= | |
| { | |
| "Game", | |
| "World", | |
| "Mission" | |
| }; | |
| class defs | |
| { | |
| class missionScriptModule | |
| { | |
| value=""; | |
| files[]= {"TheFix338Override\Scripts\5_Mission"}; | |
| }; | |
| class worldScriptModule | |
| { | |
| value = ""; | |
| files[] = {"TheFix338Override\Scripts\4_World"}; | |
| }; | |
| class gameScriptModule | |
| { | |
| value = ""; | |
| files[] = {"TheFix338Override\Scripts\3_Game"}; | |
| }; | |
| }; | |
| }; | |
| }; | |
| class Mode_Safe; | |
| class Mode_SemiAuto; | |
| class Mode_Burst; | |
| class Mode_FullAuto; | |
| class cfgWeapons | |
| { | |
| class BoltActionRifle_ExternalMagazine_Base; | |
| class BO_TheFix_Base: BoltActionRifle_ExternalMagazine_Base | |
| { | |
| chamberableFrom[] = {"Ammo_AE338"}; | |
| }; | |
| }; | |
| class CfgMagazines | |
| { | |
| class DefaultMagazine; | |
| class Magazine_Base; | |
| class BO_Mag_TheFix_10rnd: Magazine_Base | |
| { | |
| ammo="Bullet_AE338"; | |
| ammoItems[]= | |
| { | |
| "Ammo_AE338" | |
| }; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment