-
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
10 changed files
with
134 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
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 @@ | ||
x\tacgt\addons\chiappa |
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,20 @@ | ||
class CfgMagazines { | ||
class 6Rnd_45ACP_Cylinder; | ||
class CLASS(6Rnd_357): 6Rnd_45ACP_Cylinder { | ||
author = ECSTRING(main,Author); | ||
scope = 2; | ||
scopeArsenal = 2; | ||
ammo = QCLASS(357_Magnum); | ||
displayName = CSTRING(6Rnd_357_Name); | ||
descriptionShort = CSTRING(6Rnd_357_Description); | ||
}; | ||
|
||
class CLASS(6Rnd_44): 6Rnd_45ACP_Cylinder { | ||
author = ECSTRING(main,Author); | ||
scope = 2; | ||
scopeArsenal = 2; | ||
ammo = QCLASS(44_Magnum); | ||
displayName = CSTRING(6Rnd_44_Name); | ||
descriptionShort = CSTRING(6Rnd_44_Description); | ||
}; | ||
}; |
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 @@ | ||
class CfgWeapons { | ||
class Pistol_Base_F; | ||
class hgun_Pistol_heavy_02_F: Pistol_Base_F { | ||
class Single: Mode_SemiAuto { | ||
reloadTime = 0; | ||
}; | ||
}; | ||
|
||
class CLASS(Rhino_357): hgun_Pistol_heavy_02_F { | ||
author = ECSTRING(main,Author); | ||
baseWeapon = QCLASS(Rhino_357); | ||
magazines[] = {QCLASS(6Rnd_357)}; | ||
magazineWell[] = {QCLASS(Cylinder_357)}; | ||
displayName = CSTRING(Rhino_357_Name); | ||
hiddenSelections[] = {"camo", "camo1"}; | ||
hiddenSelectionsTextures[] = { | ||
QPATHTOF(data\357_magnum_co.paa), | ||
"\A3\Weapons_F_EPA\Pistols\Pistol_Heavy_02\data\Pistol_Heavy_02_mag_co" | ||
}; | ||
}; | ||
|
||
class CLASS(Rhino_44): hgun_Pistol_heavy_02_F { | ||
author = ECSTRING(main,Author); | ||
baseWeapon = QCLASS(Rhino_44); | ||
magazines[] = {QCLASS(6Rnd_44)}; | ||
magazineWell[] = {QCLASS(Cylinder_44)}; | ||
displayName = CSTRING(Rhino_44_Name); | ||
hiddenSelections[] = {"camo", "camo1"}; | ||
hiddenSelectionsTextures[] = { | ||
QPATHTOF(data\44_magnum_co.paa), | ||
"\A3\Weapons_F_EPA\Pistols\Pistol_Heavy_02\data\Pistol_Heavy_02_mag_co" | ||
}; | ||
}; | ||
}; |
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,27 @@ | ||
#include "script_component.hpp" | ||
|
||
class CfgPatches { | ||
class ADDON { | ||
name = COMPONENT_NAME; | ||
units[] = {}; | ||
weapons[] = { | ||
QCLASS(Rhino_357), | ||
QCLASS(Rhino_44) | ||
}; | ||
magazines[] = { | ||
QCLASS(6Rnd_357), | ||
QCLASS(6Rnd_44) | ||
}; | ||
requiredVersion = REQUIRED_VERSION; | ||
requiredAddons[] = {"tacgt_main", "tacgt_ammunition"}; | ||
author = ECSTRING(main,Authors); | ||
authors[] = {"Tyrone"}; | ||
url = ECSTRING(main,URL); | ||
VERSION_CONFIG; | ||
}; | ||
}; | ||
|
||
class Mode_SemiAuto; | ||
|
||
#include "CfgWeapons.hpp" | ||
#include "CfgMagazines.hpp" |
Binary file not shown.
Binary file not shown.
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 chiappa | ||
#define COMPONENT_BEAUTIFIED Chiappa | ||
#include "\x\tacgt\addons\main\script_mod.hpp" | ||
#include "\x\tacgt\addons\main\script_macros.hpp" |
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,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project name="TACGT"> | ||
<Package name="Chiappa"> | ||
<Key ID="STR_TACGT_Chiappa_Rhino_357_Name"> | ||
<English>Chiappa Rhino 60DS (.357)</English> | ||
</Key> | ||
<Key ID="STR_TACGT_Chiappa_Rhino_44_Name"> | ||
<English>Chiappa Rhino 60DS (.44)</English> | ||
</Key> | ||
<Key ID="STR_TACGT_Chiappa_6Rnd_357_Name"> | ||
<English>6Rnd .357 Cylinder</English> | ||
</Key> | ||
<Key ID="STR_TACGT_Chiappa_6Rnd_357_Description"> | ||
<English>Caliber: .357 Magnum</English> | ||
</Key> | ||
<Key ID="STR_TACGT_Chiappa_6Rnd_44_Name"> | ||
<English>6Rnd .44 Cylinder</English> | ||
</Key> | ||
<Key ID="STR_TACGT_Chiappa_6Rnd_44_Description"> | ||
<English>Caliber: .44 Magnum</English> | ||
</Key> | ||
</Package> | ||
</Project> |