-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added remaining files and sub-folders
- Loading branch information
Showing
76 changed files
with
4,254 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,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; | ||
}; | ||
}; |
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,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; |
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,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; | ||
|
Oops, something went wrong.