3 Commits

Author SHA1 Message Date
Valmo Trindade
cad4aaa1a5 Added Tanoa to switch case function to manage positions 2025-10-12 20:31:00 -03:00
Valmo Trindade
2e017f97c9 Removed executable because brett said dont need it 2025-09-09 14:16:02 -03:00
Valmo Trindade
fbd58d9426 Removed SIMTAK apk from includes, added executable for linux 2025-09-04 11:24:29 -03:00
2 changed files with 4 additions and 4 deletions

View File

@@ -25,8 +25,7 @@ include = [
"LICENSE", "LICENSE",
"*.dll", "*.dll",
"*.so", "*.so",
"*.paa", "*.paa"
"simtak.apk"
] ]
[properties] [properties]
@@ -71,8 +70,6 @@ parameters = [
"-filePatching", "-filePatching",
] ]
executable = "/home/valmo/.steam/steam/steamapps/common/Proton 8.0/proton run '/home/valmo/.steam/steam/steamapps/common/Arma 3/arma3_x64.exe'"
[binarize] [binarize]
exclude = [ exclude = [
"*.jpg" "*.jpg"

View File

@@ -74,6 +74,9 @@ switch (toLower worldName) do {
case "kunduz_valley": { case "kunduz_valley": {
_realLocation = _position call armatak_fnc_convert_to_kunduz_valley; _realLocation = _position call armatak_fnc_convert_to_kunduz_valley;
}; };
case "tanoa": {
_realLocation = _position call armatak_fnc_convert_to_tanoa;
}
default { default {
_warning = format ["<t color='#FF8021'>ARMATAK</t><br/> %1", "Unsupported Map"]; _warning = format ["<t color='#FF8021'>ARMATAK</t><br/> %1", "Unsupported Map"];
[[_warning, 1.5]] call CBA_fnc_notify; [[_warning, 1.5]] call CBA_fnc_notify;