-
Notifications
You must be signed in to change notification settings - Fork 4
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
Showing
2 changed files
with
38 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#include "script_component.hpp" | ||
|
||
class CfgPatches { | ||
class ADDON { | ||
name = COMPONENT_NAME; | ||
units[] = {}; | ||
weapons[] = {}; | ||
requiredVersion = REQUIRED_VERSION; | ||
requiredAddons[] = { | ||
"tacgt_main", | ||
"tacgt_recoils", | ||
"RF_Data_Loadorder" | ||
}; | ||
skipWhenMissingDependencies = 1; | ||
author = ECSTRING(main,Author); | ||
authors[] = {"Mike"}; | ||
url = ECSTRING(main,URL); | ||
VERSION_CONFIG; | ||
}; | ||
}; | ||
|
||
class CfgWeapons { | ||
// ASh12 using 7.62x39 Recoils, no bullpup variant should account for larger caliber. | ||
class Rifle_Base_F; | ||
class arifle_ash12_base_RF: Rifle_Base_F { | ||
recoil = QCLASS(762R_Medium); | ||
}; | ||
class arifle_ash12_GL_base_RF: arifle_ash12_base_RF { | ||
recoil = QCLASS(762R_Medium_FG); | ||
}; | ||
class arifle_ash12_LR_base_RF: arifle_ash12_base_RF { | ||
recoil = QCLASS(762R_Long); | ||
}; | ||
}; |
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,4 @@ | ||
#define COMPONENT recoils_rf | ||
#define COMPONENT_BEAUTIFIED Recoils RF | ||
#include "\x\tacgt\addons\main\script_mod.hpp" | ||
#include "\x\tacgt\addons\main\script_macros.hpp" |