-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from tuntematonjr/v2
V2
- Loading branch information
Showing
49 changed files
with
4,897 additions
and
602 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,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
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,10 @@ | ||
*.pbo | ||
*.bak | ||
*.lnk | ||
*.bikey | ||
*.txt | ||
*.md | ||
*.p3d | ||
*.paa | ||
*.png | ||
*.ogg |
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
Arma Public License Share Alike (APL-SA) | ||
https://www.bohemia.net/community/licenses/arma-public-license-share-alike | ||
|
||
|
||
Can be re-uploaded to workshop if original content is credited and linked. |
This file was deleted.
Oops, something went wrong.
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\tun\addons\artycomputer_models |
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,35 @@ | ||
#include "script_component.hpp" | ||
|
||
class CfgPatches | ||
{ | ||
class tun_artycomputer_models | ||
{ | ||
requiredVersion = 1.94; | ||
requiredAddons[] = {"A3_Weapons_F","cba_main","cba_xeh","cba_settings"}; | ||
units[]={}; | ||
weapons[]={"tun_tablet"}; | ||
author = "Immonen & Nurmi"; | ||
authorUrl = "https://armafinland.fi/"; | ||
}; | ||
}; | ||
|
||
class CfgWeapons { | ||
class CBA_MiscItem; | ||
class CBA_MiscItem_ItemInfo; | ||
|
||
|
||
class tun_tablet: CBA_MiscItem | ||
{ | ||
displayName="Military Tablet"; | ||
scope=2; | ||
author="Immonen & Nurmi"; | ||
picture= "\x\Tun\addons\artycomputer_models\data\tablet_icon.paa"; | ||
model= "\x\Tun\addons\artycomputer_models\tablet.p3d"; | ||
icon= "\x\Tun\addons\artycomputer_models\data\tablet_icon.paa"; | ||
descriptionShort="Tablet used to run AFI (Advanced Firesupport Interface)"; | ||
class ItemInfo: CBA_MiscItem_ItemInfo { | ||
mass = 2; | ||
}; | ||
}; | ||
}; | ||
|
Oops, something went wrong.