-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9167289
commit 8b778b8
Showing
7 changed files
with
107 additions
and
99 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
class Mode_FullAuto; | ||
class CfgWeapons { | ||
// Adds C7, C7GL, and C7A2, C7A2 | ||
class CUP_arifle_M16A1E1; | ||
class potato_fauxC7_c7: CUP_arifle_M16A1E1 { | ||
author = "Potato"; | ||
displayName = "C7"; | ||
modes[] = {"Single","FullAuto","Burst_medium","single_medium_optics1","single_medium_optics2"}; | ||
class FullAuto: Mode_FullAuto { | ||
class BaseSoundModeType; | ||
class StandardSound: BaseSoundModeType { | ||
soundsetshot[] = {"jsrs_m16a4_shot_soundset","jsrs_5x56mm_reverb_soundset"}; | ||
}; | ||
class SilencedSound: BaseSoundModeType { | ||
soundsetshot[] = {"jsrs_spar_shot_silenced_soundset","jsrs_5x56mm_sd_reverb_soundset"}; | ||
}; | ||
soundBurst = 0; | ||
ffCount = 3; | ||
dispersion = 0.0006; | ||
reloadTime = 0.075; | ||
minRange = 1; | ||
minRangeProbab = 0.2; | ||
midRange = 100; | ||
midRangeProbab = 0.7; | ||
maxRange = 300; | ||
maxRangeProbab = 0.05; | ||
}; | ||
}; | ||
class CUP_arifle_M16A1GL; | ||
class potato_fauxC7_c7GL: CUP_arifle_M16A1GL { | ||
author = "Potato"; | ||
displayName = "C7 M203"; | ||
}; | ||
class CUP_arifle_M16A4_Base; | ||
class potato_fauxC7_c7a2: CUP_arifle_M16A4_Base { | ||
author = "Potato"; | ||
displayName = "C7A2"; | ||
modes[] = {"Single","FullAuto","Burst_medium","single_medium_optics1","single_medium_optics2"}; | ||
class FullAuto: Mode_FullAuto { | ||
class BaseSoundModeType; | ||
class StandardSound: BaseSoundModeType { | ||
soundsetshot[] = {"jsrs_m16a4_shot_soundset","jsrs_5x56mm_reverb_soundset"}; | ||
}; | ||
class SilencedSound: BaseSoundModeType { | ||
soundsetshot[] = {"jsrs_spar_shot_silenced_soundset","jsrs_5x56mm_sd_reverb_soundset"}; | ||
}; | ||
soundBurst = 0; | ||
ffCount = 3; | ||
dispersion = 0.0006; | ||
reloadTime = 0.075; | ||
minRange = 1; | ||
minRangeProbab = 0.2; | ||
midRange = 100; | ||
midRangeProbab = 0.7; | ||
maxRange = 300; | ||
maxRangeProbab = 0.05; | ||
}; | ||
}; | ||
class CUP_arifle_M16A4_GL; | ||
class potato_fauxC7_c7a2GL: CUP_arifle_M16A4_GL { | ||
author = "Potato"; | ||
displayName = "C7A2 M203"; | ||
modes[] = {"Single","FullAuto","Burst_medium","single_medium_optics1","single_medium_optics2"}; | ||
class FullAuto: Mode_FullAuto { | ||
class BaseSoundModeType; | ||
class StandardSound: BaseSoundModeType { | ||
soundsetshot[] = {"jsrs_m16a4_shot_soundset","jsrs_5x56mm_reverb_soundset"}; | ||
}; | ||
class SilencedSound: BaseSoundModeType { | ||
soundsetshot[] = {"jsrs_spar_shot_silenced_soundset","jsrs_5x56mm_sd_reverb_soundset"}; | ||
}; | ||
soundBurst = 0; | ||
ffCount = 3; | ||
dispersion = 0.0006; | ||
reloadTime = 0.075; | ||
minRange = 1; | ||
minRangeProbab = 0.2; | ||
midRange = 100; | ||
midRangeProbab = 0.7; | ||
maxRange = 300; | ||
maxRangeProbab = 0.05; | ||
}; | ||
}; | ||
}; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#include "\z\potato\addons\customGear\script_component.hpp" | ||
#undef COMPONENT | ||
#define COMPONENT customGear_fauxC7 | ||
|
||
|
||
class CfgPatches { | ||
class ADDON { | ||
weapons[] = { "potato_fauxC7_c7", "potato_fauxC7_c7GL", "potato_fauxC7_c7a2", "potato_fauxC7_c7a2GL" }; | ||
units[] = {}; | ||
requiredVersion = REQUIRED_VERSION; | ||
requiredAddons[] = {"potato_core", "CUP_Weapons_LoadOrder", "jsrs_soundmod_cup_weapons"}; | ||
skipWhenMissingDependencies = 1; | ||
author = "Potato"; | ||
authors[] = {"AChesheireCat"}; | ||
authorUrl = "https://github.com/BourbonWarfare/POTATO"; | ||
VERSION_CONFIG; | ||
}; | ||
}; |
File renamed without changes.
4 changes: 3 additions & 1 deletion
4
addons/miscFixes/fauxLAMG/config.cpp → addons/customGear/fauxLAMG/config.cpp
This file contains 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
This file was deleted.
Oops, something went wrong.