Skip to content

Commit

Permalink
Added remaining files and sub-folders
Browse files Browse the repository at this point in the history
  • Loading branch information
whipl authored Mar 11, 2018
1 parent 09b421b commit d0f4609
Show file tree
Hide file tree
Showing 76 changed files with 4,254 additions and 0 deletions.
Binary file added images/img_flight-recorder.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/img_hvt.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/img_jips.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/img_lna.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/img_loadscreenN.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/img_overviewN.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tex_callsignsN.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tex_lageplanN.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tex_map_aoE.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tex_map_aoM.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tex_map_aoN.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tex_netplan_tableN.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tex_obj_aa.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tex_obj_cache.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tex_obj_hmmwv.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tex_obj_iedN.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tex_obj_lna.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tex_obj_recorder.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tex_obj_standby.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tex_obj_terrorist.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/tmp_baf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions scripts/TeleportToSL.sqf
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
Move player 3m behind his group leader or into leader's vehicle
By Megagoth1702, thanks to Sandiford and Cheesenoggin, slightly modified by ZZEZ
*/

private ["_leader","_LX","_LY","_LZ"];

//setting up basic variables
_leader = leader player;

//If leader's vehicle is the leader himself, move player 3m behind him

if (vehicle _leader == _leader) then
{

//Getting the coords

_LX = (getpos _leader select 0) +
(3*sin ((getDir _leader) -180));
_LY = (getpos _leader select 1) +
(3*cos ((getDir _leader) -180));
_LZ = (getpos _leader select 2);

player setpos [_LX,_LY,_LZ];
player removeAction movetoSL;
}

//If leader is inside vehicle, move player into vehicle cargo

else

{

/*Checking if there is room in the vehicle, gives hint if there is none
if there is room, player is moved into cargo of leader's vehicle
*/

if ((vehicle _leader) emptyPositions "cargo"==0) then
{hint "No room in squad leader's vehicle."}
else
{
player moveincargo vehicle _leader;
player removeAction movetoSL;
};
};
106 changes: 106 additions & 0 deletions scripts/acre_init.sqf
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
/* ==================================================== */
/* === Script for Arma3 by Whiplash. === */
/* === This script is open-source and can be used. === */
/* === See comments below for how-to-use. === */
/* ==================================================== */

// Call this on both, the server and the clients for it to work.
// ACRE initiation. Used to pre-define channel names for all 3 radio types. See ACRE-API.

/* ==================================================== */





["ACRE_PRC148", "default", "ISAF"] call acre_api_fnc_copyPreset;
["ACRE_PRC152", "default", "ISAF"] call acre_api_fnc_copyPreset;
["ACRE_PRC117F", "default", "ISAF"] call acre_api_fnc_copyPreset;

["ACRE_PRC148", "ISAF", 1, "label", "BN NET"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC148", "ISAF", 1, "frequencyRX", 31.25] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC148", "ISAF", 1, "frequencyTX", 31.25] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC148", "ISAF", 2, "label", "B COYNET"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC148", "ISAF", 2, "frequencyRX", 31.375] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC148", "ISAF", 2, "frequencyTX", 31.375] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC148", "ISAF", 3, "label", "1-PLTNET"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC148", "ISAF", 3, "frequencyRX", 31.5] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC148", "ISAF", 3, "frequencyTX", 31.5] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC148", "ISAF", 4, "label", "2-PLTNET"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC148", "ISAF", 4, "frequencyRX", 31.625] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC148", "ISAF", 4, "frequencyTX", 31.625] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC148", "ISAF", 5, "label", "FCN"] call acre_api_fnc_setPresetChannelField
//["ACRE_PRC148", "ISAF", 5, "frequencyRX", 31.75] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC148", "ISAF", 5, "frequencyTX", 31.75] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC148", "ISAF", 6, "label", "AIR REQ NET"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC148", "ISAF", 6, "frequencyRX", 31.875] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC148", "ISAF", 6, "frequencyTX", 31.875] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC148", "ISAF", 7, "label", "TAD-1"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC148", "ISAF", 7, "frequencyRX", 32.0] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC148", "ISAF", 7, "frequencyTX", 32.0] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC148", "ISAF", 8, "label", "TAD-2"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC148", "ISAF", 8, "frequencyRX", 32.125] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC148", "ISAF", 8, "frequencyTX", 32.125] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC148", "ISAF", 9, "label", "CTAF"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC148", "ISAF", 9, "frequencyRX", 32.25] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC148", "ISAF", 9, "frequencyTX", 32.25] call acre_api_fnc_setPresetChannelField;

["ACRE_PRC152", "ISAF", 1, "description", "BN NET"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC152", "ISAF", 1, "frequencyRX", 31.25] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC152", "ISAF", 1, "frequencyTX", 31.25] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC152", "ISAF", 2, "description", "B COYNET"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC152", "ISAF", 2, "frequencyRX", 31.375] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC152", "ISAF", 2, "frequencyTX", 31.375] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC152", "ISAF", 3, "description", "1-PLTNET"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC152", "ISAF", 3, "frequencyRX", 31.5] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC152", "ISAF", 3, "frequencyTX", 31.5] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC152", "ISAF", 4, "description", "2-PLTNET"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC152", "ISAF", 4, "frequencyRX", 31.625] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC152", "ISAF", 4, "frequencyTX", 31.625] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC152", "ISAF", 5, "description", "FCN"] call acre_api_fnc_setPresetChannelField
//["ACRE_PRC152", "ISAF", 5, "frequencyRX", 31.75] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC152", "ISAF", 5, "frequencyTX", 31.75] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC152", "ISAF", 6, "description", "AIR REQ NET"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC152", "ISAF", 6, "frequencyRX", 31.875] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC152", "ISAF", 6, "frequencyTX", 31.875] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC152", "ISAF", 7, "description", "TAD-1"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC152", "ISAF", 7, "frequencyRX", 32.0] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC152", "ISAF", 7, "frequencyTX", 32.0] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC152", "ISAF", 8, "description", "TAD-2"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC152", "ISAF", 8, "frequencyRX", 32.125] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC152", "ISAF", 8, "frequencyTX", 32.125] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC152", "ISAF", 9, "description", "CTAF"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC152", "ISAF", 9, "frequencyRX", 32.25] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC152", "ISAF", 9, "frequencyTX", 32.25] call acre_api_fnc_setPresetChannelField;

["ACRE_PRC117F", "ISAF", 1, "name", "BN NET"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC117F", "ISAF", 1, "frequencyRX", 31.25] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC117F", "ISAF", 1, "frequencyTX", 31.25] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC117F", "ISAF", 2, "name", "B COYNET"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC117F", "ISAF", 2, "frequencyRX", 31.375] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC117F", "ISAF", 2, "frequencyTX", 31.375] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC117F", "ISAF", 3, "name", "1-PLTNET"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC117F", "ISAF", 3, "frequencyRX", 31.5] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC117F", "ISAF", 3, "frequencyTX", 31.5] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC117F", "ISAF", 4, "name", "2-PLTNET"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC117F", "ISAF", 4, "frequencyRX", 31.625] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC117F", "ISAF", 4, "frequencyTX", 31.625] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC117F", "ISAF", 5, "name", "FCN"] call acre_api_fnc_setPresetChannelField
//["ACRE_PRC117F", "ISAF", 5, "frequencyRX", 31.75] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC117F", "ISAF", 5, "frequencyTX", 31.75] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC117F", "ISAF", 6, "name", "AIR REQ NET"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC117F", "ISAF", 6, "frequencyRX", 31.875] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC117F", "ISAF", 6, "frequencyTX", 31.875] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC117F", "ISAF", 7, "name", "TAD-1"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC117F", "ISAF", 7, "frequencyRX", 32.0] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC117F", "ISAF", 7, "frequencyTX", 32.0] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC117F", "ISAF", 8, "name", "TAD-2"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC117F", "ISAF", 8, "frequencyRX", 32.125] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC117F", "ISAF", 8, "frequencyTX", 32.125] call acre_api_fnc_setPresetChannelField;
["ACRE_PRC117F", "ISAF", 9, "name", "CTAF"] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC117F", "ISAF", 9, "frequencyRX", 32.25] call acre_api_fnc_setPresetChannelField;
//["ACRE_PRC117F", "ISAF", 9, "frequencyTX", 32.25] call acre_api_fnc_setPresetChannelField;

["ACRE_PRC148", "ISAF"] call acre_api_fnc_setPreset;
["ACRE_PRC152", "ISAF"] call acre_api_fnc_setPreset;
["ACRE_PRC117F", "ISAF"] call acre_api_fnc_setPreset;
21 changes: 21 additions & 0 deletions scripts/civ_spotter_1.sqf
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/* ==================================================== */
/* === Script for Arma3 by Whiplash. === */
/* === This script is open-source and can be used. === */
/* === See comments below for how-to-use. === */
/* ==================================================== */

// This is run by executing it from a waypoint (Scripted type).
// Civilian spotter script. This is run when a civilian spotter calls and alarms OPFOR.
// Initialize the variables used here in the server_init.sqf

/* ==================================================== */





var_civ_spotter_1 = true;
playSound3D ["A3\Sounds_F\sfx\radio\ambient_radio29.wss", phone_random_1, false, getPosAsl phone_random_1, 1.5, 1, 60];
playSound3D ["A3\Sounds_F\sfx\radio\ambient_radio29.wss", fobE_toc_sattelitePhone_1, false, getPosAsl fobE_toc_sattelitePhone_1, 2, 1, 20];
Sleep 5;

Loading

0 comments on commit d0f4609

Please sign in to comment.