-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Split original Painkiller_Patch.hpp into their respective files (CfgMagazines.hpp, CfgVehicles.hpp, CfgWeapons.hpp) - Fixed image pathing per HEMTT - Removed redundant line in ACE_Medical_Treatment_Actions.hpp - Updated config.cpp to include the new broken out files
- Loading branch information
1 parent
0922688
commit cc6cf1b
Showing
6 changed files
with
44 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// License Attribution req: UI image authored by user grmarcstock via Vecteezy.com | ||
|
||
class CfgMagazines { | ||
class CA_Magazine; | ||
class ACE_painkillers: CA_Magazine {}; | ||
class potato_pkblister: ACE_painkillers { | ||
author = "AChesheireCat"; | ||
displayName = "Painkiller Blister Pack"; | ||
descriptionShort = "For physical pain only"; | ||
descriptionUse = "A blister pack containing individualized painkiller tablets, regularly issued in IFAKs"; | ||
picture = QPATHTOEF(miscMedical,ui\pkblister_ca.paa); | ||
count = 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 CfgVehicles { | ||
class Item_Base_F; | ||
class ACE_painkillersItem: Item_Base_F {}; | ||
class potato_pkblisterItem: ACE_painkillersItem { | ||
author = "AChesheireCat"; | ||
displayName = "Painkiller Blister Pack"; | ||
vehicleClass = "Items"; | ||
class TransportItems { | ||
MACRO_ADDMAGAZINE(potato_pkblister,1); | ||
}; | ||
}; | ||
}; |
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,14 @@ | ||
// License Attribution req: UI image authored by user grmarcstock via Vecteezy.com | ||
|
||
class CfgWeapons { | ||
class ACE_ItemCore; | ||
class ACE_painkillers_Item: ACE_ItemCore {}; | ||
class potato_pkblister: ACE_painkillers { | ||
scope = 2; | ||
author = "AChesheireCat"; | ||
displayName = "Painkiller Blister Pack"; | ||
descriptionShort = "For physical pain only"; | ||
descriptionUse = "A blister pack containing individualized painkiller tablets, regularly issued in IFAKs"; | ||
picture = QPATHTOEF(miscMedical,ui\pkblister_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 |
---|---|---|
@@ -1,44 +1,6 @@ | ||
// License Attribution req: UI image authored by user grmarcstock via Vecteezy.com | ||
|
||
class CfgMagazines { | ||
class CA_Magazine; | ||
class ACE_painkillers: CA_Magazine {}; | ||
class potato_pkblister: ACE_painkillers { | ||
author = "AChesheireCat"; | ||
displayName = "Painkiller Blister Pack"; | ||
descriptionShort = "For physical pain only"; | ||
descriptionUse = "A blister pack containing individualized painkiller tablets, regularly issued in IFAKs"; | ||
picture = QPATHOF(ui\pkblister_ca.paa); | ||
count = 2; | ||
}; | ||
}; | ||
class CfgVehicles { | ||
class Item_Base_F; | ||
class ACE_painkillersItem: Item_Base_F {}; | ||
class potato_pkblisterItem: ACE_painkillersItem { | ||
author = "AChesheireCat"; | ||
displayName = "Painkiller Blister Pack"; | ||
vehicleClass = "Items"; | ||
class TransportItems { | ||
MACRO_ADDMAGAZINE(potato_pkblister,1); | ||
}; | ||
}; | ||
}; | ||
class CfgWeapons { | ||
class ACE_ItemCore; | ||
class ACE_painkillers_Item: ACE_ItemCore {}; | ||
class potato_pkblister: ACE_painkillers { | ||
scope = 2; | ||
author = "AChesheireCat"; | ||
displayName = "Painkiller Blister Pack"; | ||
descriptionShort = "For physical pain only"; | ||
descriptionUse = "A blister pack containing individualized painkiller tablets, regularly issued in IFAKs"; | ||
picture = QPATHOF(ui\pkblister_ca.paa); | ||
}; | ||
}; | ||
class ace_medical_treatment { | ||
class Medication { | ||
class Painkillers; | ||
class Pkblister: Painkillers {}; | ||
}; | ||
}; | ||
}; |
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