-
Notifications
You must be signed in to change notification settings - Fork 739
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
General - Add replacement items for editor inventory management (#10216)
Add replacement items for editor inventory management
- Loading branch information
Showing
7 changed files
with
45 additions
and
6 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,17 @@ | ||
class CfgWeapons { | ||
class ACE_ItemCore; | ||
class CBA_MiscItem_ItemInfo; | ||
|
||
// Since base game doesn't support misc. items, this is needed to filling inventories in the editor | ||
class GVAR(notepad_Item): ACE_ItemCore { | ||
displayName = CSTRING(Notepad_DisplayName); | ||
author = ECSTRING(common,ACETeam); | ||
scope = 2; | ||
scopeArsenal = 0; | ||
descriptionShort = CSTRING(Notepad_Description); | ||
picture = QPATHTOF(ui\notepad_ca.paa); | ||
class ItemInfo: CBA_MiscItem_ItemInfo { | ||
mass = 0.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
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
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