-
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
98 additions
and
4 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 @@ | ||
x\tacgt\addons\rpag_2 |
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,12 @@ | ||
class CfgAmmo { | ||
class CUP_R_RSHG2_HE; | ||
class CLASS(rpag_thermobaric): CUP_R_RSHG2_HE { | ||
craterEffects = "ArtyShellCrater"; | ||
explosionEffects = "BombExplosion"; | ||
explosionTime = 0; | ||
hit = 100; | ||
indirectHit = 70; | ||
indirectHitRange = 8; | ||
timeToLive = 15; | ||
}; | ||
}; |
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,11 @@ | ||
class CfgMagazines { | ||
class CUP_RSHG2_M; | ||
class CLASS(rpag_thermobaric_rocket): CUP_RSHG2_M { | ||
ammo = QCLASS(rpag_thermobaric); | ||
author = ECSTRING(main,Author); | ||
descriptionShort = "You have to be retarded to fire this.. or Mick"; | ||
displayName = "RPAG-2 Thermobaric Rocket"; | ||
displayNameShort = "Thermobaric"; | ||
scope = 2; | ||
}; | ||
}; |
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,36 @@ | ||
class CfgWeapons { | ||
class CUP_launch_RShG2_Loaded; | ||
class CUP_launch_RShG2; | ||
class CUP_launch_RShG2_Used; | ||
|
||
class CLASS(rpag_2_loaded): CUP_launch_RShG2_Loaded { | ||
author = ECSTRING(main,Author); | ||
baseWeapon = QCLASS(rpag_2); | ||
descriptionShort = ""; | ||
displayName = "RPAG-2 Thermobaric Launcher"; | ||
dlc = QUOTE(PREFIX); | ||
hiddenSelections[] = {"Camo"}; | ||
hiddenSelectionsTextures[] = {QPATHTOF(data\rpag2_co.paa)}; | ||
magazines[] = {QCLASS(rpag_thermobaric_rocket)}; | ||
picture = QPATHTOF(ui\rpag2_ca.paa); | ||
}; | ||
class CLASS(rpag_2): CUP_launch_RShG2 { | ||
author = ECSTRING(main,Author); | ||
descriptionShort = "Thermobaric missile launcher, unguided."; | ||
displayName = "RPAG-2 Thermobaric Launcher"; | ||
dlc = QUOTE(PREFIX); | ||
baseWeapon = QCLASS(rpag_2); | ||
hiddenSelections[] = {"Camo"}; | ||
hiddenSelectionsTextures[] = {QPATHTOF(data\rpag2_co.paa)}; | ||
picture = QPATHTOF(ui\rpag2_ca.paa); | ||
}; | ||
class CLASS(rpag_2_used): CUP_launch_RShG2_Used { | ||
author = ECSTRING(main,Author); | ||
baseWeapon = QCLASS(rpag_2_used); | ||
displayName = "RPAG-2 Thermobaric Launcher (Used)"; | ||
dlc = QUOTE(PREFIX); | ||
hiddenSelections[] = {"Camo"}; | ||
hiddenSelectionsTextures[] = {QPATHTOF(data\rpag2_co.paa)}; | ||
picture = QPATHTOF(ui\rpag2_ca.paa); | ||
}; | ||
}; |
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,32 @@ | ||
#include "script_component.hpp" | ||
|
||
class CfgPatches { | ||
class ADDON { | ||
name = COMPONENT_NAME; | ||
units[] = {}; | ||
weapons[] = { | ||
QCLASS(rpag_2_loaded), | ||
QCLASS(rpag_2), | ||
QCLASS(rpag_2_used) | ||
}; | ||
requiredVersion = REQUIRED_VERSION; | ||
requiredAddons[] = { | ||
"tacgt_main", | ||
"tacgt_theseus", | ||
"CUP_Weapons_LoadOrder" | ||
}; | ||
skipWhenMissingDependencies = 1; | ||
author = ECSTRING(main,Author); | ||
authors[] = {"Mike"}; | ||
url = ECSTRING(main,URL); | ||
VERSION_CONFIG; | ||
}; | ||
}; | ||
|
||
class CBA_DisposableLaunchers { | ||
CLASS(rpag_2_loaded)[] = {QCLASS(rpag_2), QCLASS(rpag_2_used)}; | ||
}; | ||
|
||
#include "CfgAmmo.hpp" | ||
#include "CfgMagazines.hpp" | ||
#include "CfgWeapons.hpp" |
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 rpag_2 | ||
#define COMPONENT_BEAUTIFIED RPAG 2 | ||
#include "\x\tacgt\addons\main\script_mod.hpp" | ||
#include "\x\tacgt\addons\main\script_macros.hpp" |
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
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