Skip to content

Commit

Permalink
First upload
Browse files Browse the repository at this point in the history
First upload of the repository
  • Loading branch information
Kimukun committed Nov 2, 2016
1 parent 60e6ed9 commit 5f1d418
Show file tree
Hide file tree
Showing 88 changed files with 7,673 additions and 0 deletions.
1,458 changes: 1,458 additions & 0 deletions saf2035/saf2035_m90/config.cpp

Large diffs are not rendered by default.

Binary file added saf2035/saf2035_m90/data/backpack/m90_kitbag.paa
Binary file not shown.
Binary file added saf2035/saf2035_m90/data/headgear/m90_boonie.paa
Binary file not shown.
Binary file added saf2035/saf2035_m90/data/headgear/m90_helmet.paa
Binary file not shown.
Binary file added saf2035/saf2035_m90/data/ui/boonieM90.paa
Binary file not shown.
Binary file added saf2035/saf2035_m90/data/ui/echM90.paa
Binary file not shown.
Binary file not shown.
Binary file added saf2035/saf2035_m90/data/uniform/m90_uniform.paa
Binary file not shown.
Binary file added saf2035/saf2035_m90/data/vest/m90_vest.paa
Binary file not shown.
15 changes: 15 additions & 0 deletions saf2035/saf2035_m90/scripts/expbags.sqf
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
if (isServer) then {
if (isClass (configFile >> "CfgPatches" >> "ace_explosives")) then
{
_this addItemToBackpack "ACE_M26_Clacker";
_this addItemToBackpack "ACE_DefusalKit";
_this addItemToBackpack "MineDetector";
for "_i" from 1 to 8 do {_this addItemToBackpack "DemoCharge_Remote_Mag";};
}
else
{
_this addItemToBackpack "ToolKit";
_this addItemToBackpack "MineDetector";
for "_i" from 1 to 8 do {_this addItemToBackpack "DemoCharge_Remote_Mag";};
};
};
14 changes: 14 additions & 0 deletions saf2035/saf2035_m90/scripts/medicbags.sqf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
if (isServer) then {
if (isClass (configFile >> "CfgPatches" >> "ace_medical")) then
{
for "_i" from 1 to 10 do {_this addItemToBackpack "ACE_fieldDressing";};
for "_i" from 1 to 10 do {_this addItemToBackpack "ACE_morphine";};
for "_i" from 1 to 10 do {_this addItemToBackpack "ACE_epinephrine";};
for "_i" from 1 to 10 do {_this addItemToBackpack "ACE_bloodIV_500";};
}
else
{
_this addItemToBackpack "Medikit";
for "_i" from 1 to 25 do {_this addItemToBackpack "FirstAidKit";};
};
};
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added saf2035/saf2035_m90desert/data/ui/boonieM90K.paa
Binary file not shown.
Binary file added saf2035/saf2035_m90desert/data/ui/echM90K.paa
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added saf2035/saf2035_m90desert/data/vest/m90k_vest.paa
Binary file not shown.
15 changes: 15 additions & 0 deletions saf2035/saf2035_m90desert/scripts/expbags.sqf
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
if (isServer) then {
if (isClass (configFile >> "CfgPatches" >> "ace_explosives")) then
{
_this addItemToBackpack "ACE_M26_Clacker";
_this addItemToBackpack "ACE_DefusalKit";
_this addItemToBackpack "MineDetector";
for "_i" from 1 to 8 do {_this addItemToBackpack "DemoCharge_Remote_Mag";};
}
else
{
_this addItemToBackpack "ToolKit";
_this addItemToBackpack "MineDetector";
for "_i" from 1 to 8 do {_this addItemToBackpack "DemoCharge_Remote_Mag";};
};
};
14 changes: 14 additions & 0 deletions saf2035/saf2035_m90desert/scripts/medicbags.sqf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
if (isServer) then {
if (isClass (configFile >> "CfgPatches" >> "ace_medical")) then
{
for "_i" from 1 to 10 do {_this addItemToBackpack "ACE_fieldDressing";};
for "_i" from 1 to 10 do {_this addItemToBackpack "ACE_morphine";};
for "_i" from 1 to 10 do {_this addItemToBackpack "ACE_epinephrine";};
for "_i" from 1 to 10 do {_this addItemToBackpack "ACE_bloodIV_500";};
}
else
{
_this addItemToBackpack "Medikit";
for "_i" from 1 to 25 do {_this addItemToBackpack "FirstAidKit";};
};
};
70 changes: 70 additions & 0 deletions saf2035/saf2035_main/config.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
class CfgPatches
{
class SAF2035
{
units[] = {};
weapons[] = {};
magazines[] = {};
ammo[] = {};
requiredVersion = 1.62;
requiredAddons[] =
{
"A3_Data_F",
"A3_Structures_F_Mil_Flags",
"A3_UI_F"
};
author = "Kimukun";
version = 1.0;
};
};
class CfgMods
{
class Mod_Base;
class SAF2035: Mod_Base
{
author = "Kimukun";
dir = "saf2035";
hideName = 1;
hidePicture = 0;
logo = "\saf2035\addons\saf2035\swe_icon_ca.paa";
logoOver = "\saf2035\addons\saf2035_main\data\ui\swe_icon_ca.paa";
logoSmall = "\saf2035\addons\saf2035_main\data\ui\swe_icon_ca.paa";
name = "Swedish Armed Forces 2035";
overview = "Swedish Armed Forces 2035 comes with a wide varaity of units based on the Swedish Armed Forces in a futuristic version. Units comes in regular M90 Woodland and M90K Desert versions. Also Special Forces in Scorpion W2 version.";
picture = "\saf2035\addons\saf2035_main\data\ui\swe_icon_ca.paa";
};
};
class cfgFactionClasses
{
class saf
{
displayName = "Swedish Armed Forces 2035";
icon = "\saf2035\addons\saf2035_main\data\ui\swe_icon.paa";
priority = 1;
side = 1;
};
};
class CfgVehicles
{
class FlagCarrier;
class saf_Flag_Sweden_F: FlagCarrier
{
author = "Kimukun";
scope = 2;
displayName = "Flag (Sweden)";
class EventHandlers
{
init="(_this select 0) setFlagTexture '\saf2035\addons\saf2035_main\data\flag\flag_sweden_co.paa'";
};
};
};
class CfgMarkers
{
class flag_NATO;
class sweden_marker : flag_NATO
{
name = "Sweden";
icon = "\saf2035\addons\saf2035_main\data\ui\sweden_marker.paa";
texture = "\saf2035\addons\saf2035_main\data\ui\sweden_marker.paa";
};
};
Binary file added saf2035/saf2035_main/data/flag/flag_sweden_co.paa
Binary file not shown.
Binary file added saf2035/saf2035_main/data/insignia/insignia.paa
Binary file not shown.
Binary file added saf2035/saf2035_main/data/ui/saf2035_logo_ca.paa
Binary file not shown.
Binary file added saf2035/saf2035_main/data/ui/swe_icon_ca.paa
Binary file not shown.
Binary file added saf2035/saf2035_main/data/ui/sweden_marker.paa
Binary file not shown.
Empty file added saf2035/saf2035_sog/config.cpp
Empty file.
Binary file not shown.
Binary file added saf2035/saf2035_sog/data/backpack/mcb_kitbag.paa
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added saf2035/saf2035_sog/data/headgear/mcb_boonie.paa
Binary file not shown.
Binary file added saf2035/saf2035_sog/data/headgear/mcb_helmet.paa
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added saf2035/saf2035_sog/data/ui/boonieMC.paa
Binary file not shown.
Binary file added saf2035/saf2035_sog/data/uniform/mcb_cyre.paa
Binary file not shown.
Binary file not shown.
Binary file added saf2035/saf2035_sog/data/vest/mcb_vest.paa
Binary file not shown.
Binary file added saf2035/saf2035_sog/data/vest/scorpion_vest.paa
Binary file not shown.
15 changes: 15 additions & 0 deletions saf2035/saf2035_sog/scripts/sogexpbags.sqf
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
if (isServer) then {
if (isClass (configFile >> "CfgPatches" >> "ace_explosives")) then
{
_this addItemToBackpack "ACE_M26_Clacker";
_this addItemToBackpack "ACE_DefusalKit";
_this addItemToBackpack "MineDetector";
for "_i" from 1 to 10 do {_this addItemToBackpack "DemoCharge_Remote_Mag";};
}
else
{
_this addItemToBackpack "ToolKit";
_this addItemToBackpack "MineDetector";
for "_i" from 1 to 10 do {_this addItemToBackpack "DemoCharge_Remote_Mag";};
};
};
7 changes: 7 additions & 0 deletions saf2035/saf2035_sog/scripts/sogtlbags.sqf
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
if (isServer) then {
if (isClass (configFile >> "CfgPatches" >> "ace_main")) then
{
_this addItemToBackpack "ACE_HuntIR_monitor";
for "_i" from 1 to 4 do {_this addItemToBackpack "ACE_HuntIR_M203";};
};
};
Empty file.
11 changes: 11 additions & 0 deletions saf2035_old/cfgMods.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
class CfgMods
{
class Mod_Base;
class SAF2035_Mod : Mod_Base
{
logo = "\saf2035\data\ui\swe_icon.paa";
name = "Swedish Armed Forces 2035";
overview = "Swedish Armed Forces 2035 comes with a wide varaity of units based on the Swedish Armed Forces in a futuristic version. Units comes in regular M90 Woodland and M90K Desert versions. Also Special Forces in Scorpion W2 version.";
picture = ""
};
};
Loading

0 comments on commit 5f1d418

Please sign in to comment.