mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-18 01:30:26 +03:00
renabled side chat and added more black boxes
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
/****************************************************************************
|
||||
Copyright (C) 2010 Team ~R3F~
|
||||
This program is free software under the terms of the GNU General Public License version 3.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@authors team-r3f.org
|
||||
@version 1.00
|
||||
@date 20101006
|
||||
*****************************************************************************/
|
||||
|
||||
#include "R3F_Realism_Configuration.cfg"
|
||||
|
||||
#ifdef R3F_REALISM_USE_WEIGHT
|
||||
_void = [] execVM "R3F_realism\R3F_Weight\R3F_DoWeight.sqf";
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef R3F_REALISM_USE_TIRED
|
||||
_void = [] execVM "R3F_realism\R3F_Tired\R3F_Tired_Init.sqf";
|
||||
#endif
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
/****************************************************************************
|
||||
Copyright (C) 2010 Team ~R3F~
|
||||
This program is free software under the terms of the GNU General Public License version 3.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@authors team-r3f.org
|
||||
@version 1.00
|
||||
@date 20101006
|
||||
*****************************************************************************/
|
||||
|
||||
#define R3F_REALISM_USE_WEIGHT
|
||||
#define R3F_REALISM_USE_TIRED
|
||||
@@ -0,0 +1,12 @@
|
||||
/****************************************************************************
|
||||
Copyright (C) 2010 Team ~R3F~
|
||||
This program is free software under the terms of the GNU General Public License version 3.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@authors team-r3f.org
|
||||
@version 1.00
|
||||
@date 20101006
|
||||
*****************************************************************************/
|
||||
|
||||
#include "R3F_Weight\R3F_WEIGHT_Stringtable.csv"
|
||||
|
||||
|
Can't render this file because it contains an unexpected character in line 11 and column 10.
|
@@ -0,0 +1,130 @@
|
||||
/****************************************************************************
|
||||
Copyright (C) 2010 Team ~R3F~
|
||||
This program is free software under the terms of the GNU General Public License version 3.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@authors team-r3f.org
|
||||
@version 1.02
|
||||
@date 20101011
|
||||
*****************************************************************************/
|
||||
|
||||
#include "R3F_TIRED_Configuration.cfg"
|
||||
|
||||
private ["_level", "_n", "_s"];
|
||||
|
||||
//_voil = [] call R3F_TIRED_FNCT_MkVoile;
|
||||
//[_voil,1] call R3F_TIRED_FNCT_Voile_Noir;
|
||||
|
||||
_n = 0;
|
||||
_posATL = 0;
|
||||
|
||||
#ifdef R3F_TIRED_CSV_EXPORT
|
||||
_s = format["""Duree"",""Distance From"",""Distance To"",""Vitesse"",""Fatigue"",""Black Level"",""poids"",""Counter"""];
|
||||
_s call FNC_PrintToRPT;
|
||||
#endif
|
||||
|
||||
R3F_TIRED_Accumulator = 0;
|
||||
sleep 1;
|
||||
_level = 1;
|
||||
|
||||
while {true} do {
|
||||
|
||||
R3F_TIRED_POIDS_TOTAL_PLAYER= R3F_Weight + R3F_TIRED_WEIGHT_PLAYER_EMPTY;
|
||||
|
||||
if (R3F_weight < R3F_TIRED_WEIGHT_LEVEL3 )then {
|
||||
if (r3f_weight < R3F_TIRED_WEIGHT_LEVEL2) then {
|
||||
if (r3f_weight < R3F_TIRED_WEIGHT_LEVEL1 ) then {
|
||||
R3F_TIRED_Ratio_Overweight = R3F_TIRED_WEIGHT_RATIO1;
|
||||
} else {
|
||||
R3F_TIRED_Ratio_Overweight = R3F_TIRED_WEIGHT_RATIO2;
|
||||
};
|
||||
} else {
|
||||
R3F_TIRED_Ratio_Overweight = R3F_TIRED_WEIGHT_RATIO3;
|
||||
};
|
||||
} else {
|
||||
R3F_TIRED_Ratio_Overweight = R3F_TIRED_WEIGHT_RATIO4;
|
||||
};
|
||||
|
||||
if (alive player) then {
|
||||
switch (toArray (animationState player) select 5) do {
|
||||
case 112: {
|
||||
R3F_TIRED_Ratio_Position = R3F_TIRED_DOWN_LEVEL;
|
||||
};
|
||||
case 107:{
|
||||
R3F_TIRED_Ratio_Position=R3F_TIRED_KNEE_LEVEL;
|
||||
};
|
||||
case 101:{
|
||||
R3F_TIRED_Ratio_Position = R3F_TIRED_UP_LEVEL;
|
||||
};
|
||||
};
|
||||
|
||||
R3F_TIRED_vitesse_de_mon_joueur = [0,0,0] distance velocity player;
|
||||
R3F_TIRED_coeff_mon_elevation_en_z = 0 max ((velocity player select 2) / R3F_TIRED_WEIGHT_CLIMB_FACTOR);
|
||||
|
||||
_posATL = (getPosATL player) select 2;
|
||||
|
||||
|
||||
if((vehicle player == player) && (_posATL < 100)) then {
|
||||
R3F_TIRED_Accumulator = R3F_TIRED_Accumulator
|
||||
+ (R3F_TIRED_POIDS_TOTAL_PLAYER * R3F_TIRED_vitesse_de_mon_joueur * R3F_TIRED_Ratio_Position * R3F_TIRED_WEIGHT_SPEED_RATIO*R3F_TIRED_Ratio_Overweight)
|
||||
+ (R3F_TIRED_POIDS_TOTAL_PLAYER * R3F_TIRED_coeff_mon_elevation_en_z * R3F_TIRED_WEIGHT_LEVEL2);
|
||||
|
||||
};
|
||||
|
||||
R3F_TIRED_Accumulator = 0 max (R3F_TIRED_Accumulator - R3F_TIRED_Ratio_Recovery);
|
||||
|
||||
_level = ((R3F_TIRED_Accumulator / R3F_TIRED_BLACKOUT_LEVEL) * 100);
|
||||
_level = 0 max (1 - (_level / 100));
|
||||
|
||||
#ifdef R3F_TIRED_DEBUG
|
||||
hintsilent format["Fatique : %1/%2\nBlack level : %3\nPoids total : %4\n Poids armement : %5",
|
||||
R3F_TIRED_Accumulator,
|
||||
R3F_TIRED_BLACKOUT_LEVEL,
|
||||
_level,
|
||||
R3F_TIRED_POIDS_TOTAL_PLAYER,
|
||||
R3F_Weight];
|
||||
#endif
|
||||
|
||||
[_level] call R3F_TIRED_FNCT_Voile_Noir;
|
||||
|
||||
if (R3F_TIRED_Accumulator > R3F_TIRED_BLACKOUT_LEVEL and scriptDone R3F_TIRED_Handle_Blackout_Effect and scriptDone R3F_TIRED_Handle_Blur_Effect) then {
|
||||
R3F_TIRED_Handle_Blackout_Effect = [] spawn R3F_TIRED_FNCT_DoBlackVanish;
|
||||
};
|
||||
} else {
|
||||
R3F_TIRED_Accumulator = 0;
|
||||
};
|
||||
|
||||
if (R3F_TIRED_GLOBAL_TIRING
|
||||
&& R3F_TIRED_vitesse_de_mon_joueur > 4
|
||||
&& R3F_TIRED_Ratio_Recovery > R3F_TIRED_RATIO_RECOVERING
|
||||
) then {
|
||||
R3F_TIRED_Counter_Time= R3F_TIRED_Counter_Time + 1;
|
||||
};
|
||||
|
||||
|
||||
#ifdef R3F_TIRED_CSV_EXPORT
|
||||
_s = format["%1,%2,%3,%4,%5,%6,%7,%8",
|
||||
_n,
|
||||
(player distance flag_start),
|
||||
(player distance flag_end),
|
||||
R3F_TIRED_vitesse_de_mon_joueur,
|
||||
R3F_TIRED_Accumulator,
|
||||
_level,
|
||||
R3F_Weight,
|
||||
R3F_TIRED_Counter_Time];
|
||||
|
||||
|
||||
_s call FNC_PrintToRPT;
|
||||
#endif
|
||||
|
||||
if ((R3F_TIRED_Counter_Time > R3F_TIRED_TIME_RECOVERING)) then {
|
||||
R3F_TIRED_Ratio_Recovery = R3F_TIRED_Ratio_Recovery - 1;
|
||||
R3F_TIRED_Counter_Time = 0;
|
||||
};
|
||||
|
||||
sleep 1;
|
||||
_n = _n + 1;
|
||||
};
|
||||
|
||||
//[_voil] call R3F_TIRED_FNCT_Effect_Off;
|
||||
|
||||
@@ -0,0 +1,131 @@
|
||||
/****************************************************************************
|
||||
Copyright (C) 2010 Team ~R3F~
|
||||
This program is free software under the terms of the GNU General Public License version 3.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@authors team-r3f.org
|
||||
@version 1.00
|
||||
@date 20101006
|
||||
*****************************************************************************/
|
||||
|
||||
//Uncomment to write in arma.rpt a csv file for excel to trace some graphics
|
||||
// #define R3F_TIRED_CSV_EXPORT
|
||||
|
||||
//Uncomment to show some informations in game
|
||||
// #define R3F_TIRED_DEBUG
|
||||
|
||||
//adjustment player weight with helmet jacket Rangers Light equipment (not weapons)
|
||||
#define R3F_TIRED_WEIGHT_PLAYER_EMPTY 90
|
||||
|
||||
//Predefined models for an easy setting
|
||||
// uncomment only one setting
|
||||
// #define R3F_TIRED_SET_MODE_EASY
|
||||
#define R3F_TIRED_SET_MODE_UBEREASY
|
||||
//#define R3F_TIRED_SET_MODE_NORMAL
|
||||
//#define R3F_TIRED_SET_MODE_HARD
|
||||
|
||||
//adjustment weight * speed player
|
||||
#define R3F_TIRED_WEIGHT_SPEED_RATIO 1
|
||||
|
||||
|
||||
#ifdef R3F_TIRED_SET_MODE_UBEREASY
|
||||
|
||||
// adjustment onset threshold blackout effect
|
||||
#define R3F_TIRED_BLACKOUT_LEVEL 100000
|
||||
|
||||
// adjustment player attitude * weight (stand up, down, crouch)
|
||||
#define R3F_TIRED_DOWN_LEVEL 0.9
|
||||
#define R3F_TIRED_KNEE_LEVEL 0.6
|
||||
#define R3F_TIRED_UP_LEVEL 0.5
|
||||
|
||||
#define R3F_TIRED_WEIGHT_CLIMB_FACTOR 20
|
||||
|
||||
//adjustment threshold weight agravante factor
|
||||
#define R3F_TIRED_WEIGHT_LEVEL1 40
|
||||
#define R3F_TIRED_WEIGHT_LEVEL2 50
|
||||
#define R3F_TIRED_WEIGHT_LEVEL3 60
|
||||
|
||||
#define R3F_TIRED_SHORTNESS_THRESHOLD 0.8
|
||||
#define R3F_TIRED_UNCONSCIOUSNESS_DURATION 1
|
||||
#endif
|
||||
|
||||
#ifdef R3F_TIRED_SET_MODE_EASY
|
||||
|
||||
// adjustment onset threshold blackout effect
|
||||
#define R3F_TIRED_BLACKOUT_LEVEL 70000
|
||||
|
||||
// adjustment player attitude * weight (stand up, down, crouch)
|
||||
#define R3F_TIRED_DOWN_LEVEL 1.8
|
||||
#define R3F_TIRED_KNEE_LEVEL 1.2
|
||||
#define R3F_TIRED_UP_LEVEL 1
|
||||
|
||||
#define R3F_TIRED_WEIGHT_CLIMB_FACTOR 20
|
||||
|
||||
//adjustment threshold weight agravante factor
|
||||
#define R3F_TIRED_WEIGHT_LEVEL1 25
|
||||
#define R3F_TIRED_WEIGHT_LEVEL2 30
|
||||
#define R3F_TIRED_WEIGHT_LEVEL3 40
|
||||
|
||||
#define R3F_TIRED_SHORTNESS_THRESHOLD 0.8
|
||||
#define R3F_TIRED_UNCONSCIOUSNESS_DURATION 10
|
||||
#endif
|
||||
|
||||
#ifdef R3F_TIRED_SET_MODE_NORMAL
|
||||
|
||||
// adjustment onset threshold blackout effect
|
||||
#define R3F_TIRED_BLACKOUT_LEVEL 50000
|
||||
|
||||
//adjustment player attitude * weight (stand up, down, crouch)
|
||||
#define R3F_TIRED_DOWN_LEVEL 3
|
||||
#define R3F_TIRED_KNEE_LEVEL 1.5
|
||||
#define R3F_TIRED_UP_LEVEL 1
|
||||
|
||||
#define R3F_TIRED_WEIGHT_CLIMB_FACTOR 10
|
||||
|
||||
//adjustment threshold weight agravante factor
|
||||
#define R3F_TIRED_WEIGHT_LEVEL1 15
|
||||
#define R3F_TIRED_WEIGHT_LEVEL2 20
|
||||
#define R3F_TIRED_WEIGHT_LEVEL3 30
|
||||
|
||||
|
||||
#define R3F_TIRED_SHORTNESS_THRESHOLD 0.6
|
||||
#define R3F_TIRED_UNCONSCIOUSNESS_DURATION 30
|
||||
#endif
|
||||
|
||||
#ifdef R3F_TIRED_SET_MODE_HARD
|
||||
|
||||
// adjustment onset threshold blackout effect
|
||||
#define R3F_TIRED_BLACKOUT_LEVEL 40000
|
||||
|
||||
// adjustment player attitude * weight (stand up, down, crouch)
|
||||
#define R3F_TIRED_DOWN_LEVEL 4
|
||||
#define R3F_TIRED_KNEE_LEVEL 2
|
||||
#define R3F_TIRED_UP_LEVEL 1
|
||||
|
||||
#define R3F_TIRED_WEIGHT_CLIMB_FACTOR 5
|
||||
|
||||
// adjustment threshold weight agravante factor
|
||||
#define R3F_TIRED_WEIGHT_LEVEL1 10
|
||||
#define R3F_TIRED_WEIGHT_LEVEL2 17
|
||||
#define R3F_TIRED_WEIGHT_LEVEL3 25
|
||||
|
||||
#define R3F_TIRED_SHORTNESS_THRESHOLD 0.3
|
||||
#define R3F_TIRED_UNCONSCIOUSNESS_DURATION 60
|
||||
#endif
|
||||
|
||||
// ratio of threshold weight
|
||||
#define R3F_TIRED_WEIGHT_RATIO1 0.3 /* for weight < 10 kg */
|
||||
#define R3F_TIRED_WEIGHT_RATIO2 0.4 /* for weight 10 à 20 kg */
|
||||
#define R3F_TIRED_WEIGHT_RATIO3 0.6 /* for weight 20 à 30 kg */
|
||||
#define R3F_TIRED_WEIGHT_RATIO4 0.7 /* for weight > 30 kg */
|
||||
|
||||
|
||||
// activation / deactivation unit recup loss over time (true / false)
|
||||
#define R3F_TIRED_GLOBAL_TIRING true
|
||||
|
||||
// adjustment recovery rate
|
||||
#define R3F_TIRED_TIME_RECOVERING 100
|
||||
#define R3F_TIRED_RATIO_RECOVERING 360
|
||||
|
||||
#define R3F_TIRED_WITH_VANISH true
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
/****************************************************************************
|
||||
Copyright (C) 2010 Team ~R3F~
|
||||
This program is free software under the terms of the GNU General Public License version 3.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@authors team-r3f.org
|
||||
@version 1.00
|
||||
@date 20101006
|
||||
*****************************************************************************/
|
||||
|
||||
#include "R3F_TIRED_Configuration.cfg"
|
||||
|
||||
FNC_PrintToRPT = {
|
||||
diag_log text _this;
|
||||
};
|
||||
|
||||
R3F_TIRED_FNCT_Voile_Noir = {
|
||||
_level = _this select 0;
|
||||
if(_level < R3F_TIRED_SHORTNESS_THRESHOLD ) then{
|
||||
playSound "heartbeat_1";
|
||||
addCamShake [2, 1, 25];
|
||||
};
|
||||
|
||||
};
|
||||
R3F_TIRED_FNCT_DoBlackVanish = {
|
||||
[player,0.1] call fnc_usec_damageUnconscious;
|
||||
[_refObj,"scream",3,false] call dayz_zombieSpeak;
|
||||
cutText ["You are overburdened.", "PLAIN DOWN"];
|
||||
};
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
/****************************************************************************
|
||||
Copyright (C) 2010 Team ~R3F~
|
||||
This program is free software under the terms of the GNU General Public License version 3.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@authors team-r3f.org
|
||||
@version 1.00
|
||||
@date 20101006
|
||||
*****************************************************************************/
|
||||
|
||||
#include "R3F_TIRED_Configuration.cfg"
|
||||
|
||||
call compile preprocessFile "R3F_realism\R3F_Tired\R3F_Tired_Fnct.sqf";
|
||||
|
||||
R3F_Weight = 0;
|
||||
|
||||
R3F_TIRED_Ratio_Position = 0;
|
||||
R3F_TIRED_Accumulator = 0;
|
||||
R3F_TIRED_Handle_Blur_Effect = [] spawn {};
|
||||
R3F_TIRED_Handle_Blackout_Effect = [] spawn {};
|
||||
R3F_TIRED_Counter_Time = 0;
|
||||
R3F_TIRED_Ratio_Recovery = R3F_TIRED_RATIO_RECOVERING;
|
||||
R3F_TIRED_Ratio_Overweight = 1;
|
||||
|
||||
_void = [] execVM "R3F_Realism\R3F_Tired\R3F_DoTired.sqf";
|
||||
@@ -0,0 +1,3 @@
|
||||
|
||||
R3F_VERSION_TIRED, "1.02", "1.02"
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,50 @@
|
||||
/****************************************************************************
|
||||
Copyright (C) 2010 Team ~R3F~
|
||||
This program is free software under the terms of the GNU General Public License version 3.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@authors team-r3f.org
|
||||
@version 1.00
|
||||
@date 20101006
|
||||
*****************************************************************************/
|
||||
|
||||
#include "R3F_WEIGHT_Configuration.cfg"
|
||||
|
||||
call compile preprocessFile "R3F_Realism\R3F_Weight\R3F_Weight_Fnct.sqf";
|
||||
|
||||
private ["_n","_gearbox_visible","_control","_display","_initial_text"];
|
||||
|
||||
disableSerialization;
|
||||
|
||||
R3F_Weight = call R3F_WEIGHT_FNCT_GetWeight;
|
||||
|
||||
_initial_text = "";
|
||||
_n = 0;
|
||||
while {true} do
|
||||
{
|
||||
sleep R3F_WEIGHT_SHORT_DELAY;
|
||||
|
||||
#ifdef R3F_WEIGHT_SHOW_WEIGHT
|
||||
_display = findDisplay ARMA2_RSCDISPLAYGEARBOX;
|
||||
_gearbox_visible = ( (str _display) != "No display");
|
||||
#else
|
||||
_gearbox_visible = false;
|
||||
#endif
|
||||
|
||||
if(_gearbox_visible) then {
|
||||
R3F_Weight = call R3F_WEIGHT_FNCT_GetWeight;
|
||||
if(_initial_text == "") then {
|
||||
_control = _display displayCtrl ARMA2_CAPTIONGEARBOX;
|
||||
_initial_text = ctrlText _control ;
|
||||
};
|
||||
_control = _display displayCtrl ARMA2_CAPTIONGEARBOX;
|
||||
_control ctrlSetText format[localize "STR_R3F_WEIGHT_InGearBox",_initial_text,R3F_Weight];
|
||||
_n = 0;
|
||||
}else{
|
||||
if( _n > R3F_WEIGHT_LONG_DELAY) then {
|
||||
R3F_Weight = call R3F_WEIGHT_FNCT_GetWeight;
|
||||
_n = 0;
|
||||
};
|
||||
_n = _n + 1 ;
|
||||
};
|
||||
};
|
||||
@@ -0,0 +1,22 @@
|
||||
/****************************************************************************
|
||||
Copyright (C) 2010 Team ~R3F~
|
||||
This program is free software under the terms of the GNU General Public License version 3.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@authors team-r3f.org
|
||||
@version 1.00
|
||||
@date 20101006
|
||||
*****************************************************************************/
|
||||
|
||||
#define ARMA2_RSCDISPLAYGEARBOX 106
|
||||
#define ARMA2_CAPTIONGEARBOX 1001
|
||||
|
||||
|
||||
#define R3F_WEIGHT_SHORT_DELAY 1
|
||||
#define R3F_WEIGHT_LONG_DELAY 10
|
||||
#define R3F_WEIGHT_MAIN_INCREMENT 1
|
||||
|
||||
#define R3F_WEIGHT_SHOW_WEIGHT
|
||||
|
||||
//show or not classes not found in arma.rpt
|
||||
//#define R3F_WEIGHT_SHOW_CLASSES_NOT_FOUND
|
||||
@@ -0,0 +1,12 @@
|
||||
/****************************************************************************
|
||||
Copyright (C) 2010 Team ~R3F~
|
||||
This program is free software under the terms of the GNU General Public License version 3.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@authors team-r3f.org
|
||||
@version 1.00
|
||||
@date 20101006
|
||||
*****************************************************************************/
|
||||
R3F_VERSION_WEIGHTED, "1.04", "1.04"
|
||||
STR_R3F_WEIGHT_InGearBox, "%1 | Weight carried : %2 lb", "%1 | Poids transporté : %2 Kg"
|
||||
STR_R3F_WEIGHT_English, "lb", "Kg"
|
||||
|
@@ -0,0 +1,81 @@
|
||||
/****************************************************************************
|
||||
Copyright (C) 2010 Team ~R3F~
|
||||
This program is free software under the terms of the GNU General Public License version 3.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@authors team-r3f.org
|
||||
@version 1.02
|
||||
@date 20101018
|
||||
*****************************************************************************/
|
||||
#include "R3F_WEIGHT_Configuration.cfg"
|
||||
R3F_WEIGHT_FNCT_MakeSingleArray = {
|
||||
private ["_arr_i","_arr_n", "_arr", "_n", "_nb", "_x"];
|
||||
_arr_i = (_this select 0) select 0;
|
||||
_arr_n = (_this select 0) select 1;
|
||||
|
||||
_arr = [];
|
||||
|
||||
_n = 0;
|
||||
{
|
||||
_nb = _arr_n select _n;
|
||||
for [{_i = 0}, {_i < _nb}, {_i = _i + 1}] do{
|
||||
_arr = _arr + [_x];
|
||||
};
|
||||
_n = _n + 1;
|
||||
|
||||
}foreach _arr_i;
|
||||
|
||||
_arr;
|
||||
};
|
||||
|
||||
R3F_WEIGHT_FNCT_GetItemWeight = {
|
||||
private ["_arr_class", "_total_weight", "_weight"];
|
||||
_arr_class = (_this select 0) + (_this select 1);
|
||||
_total_weight = 0;
|
||||
_weight = 0;
|
||||
CfgWeight = missionConfigFile >> "CfgWeight";
|
||||
{
|
||||
if(isclass(CfgWeight >> "Weapons" >> _x)) then {
|
||||
_weight = getNumber(CfgWeight >> "Weapons" >> _x >> "weight");
|
||||
_total_weight = _total_weight + _weight;
|
||||
}else{
|
||||
if(isclass(CfgWeight >> "Magazines" >> _x)) then {
|
||||
_weight = getNumber(CfgWeight >> "Magazines" >> _x >> "weight");
|
||||
_total_weight = _total_weight + _weight;
|
||||
}else{
|
||||
|
||||
_weight = 0;
|
||||
if(isNumber (configFile >> "cfgMagazines" >> _x >> "weight")) then {
|
||||
_weight = getNumber(configFile >> "cfgMagazines" >> _x >> "weight");
|
||||
};
|
||||
|
||||
if(_weight > 0) then {
|
||||
_total_weight = _total_weight + _weight;
|
||||
} else {
|
||||
// log only if not found
|
||||
//diag_log format["Class not found %1", _x];
|
||||
};
|
||||
};
|
||||
};
|
||||
}foreach _arr_class;
|
||||
_total_weight;
|
||||
};
|
||||
|
||||
R3F_WEIGHT_FNCT_GetWeight = {
|
||||
private ["_bagpack","_bagpack_weapons", "_bagpack_ammo", "_return","_english"];
|
||||
_return = 0;
|
||||
_bagpack = unitBackpack player;
|
||||
if(!isnull(_bagpack)) then {
|
||||
_bagpack_weapons = [getWeaponCargo _bagpack] call R3F_WEIGHT_FNCT_MakeSingleArray;
|
||||
_bagpack_ammo = [getMagazineCargo _bagpack] call R3F_WEIGHT_FNCT_MakeSingleArray;
|
||||
_return = [_bagpack_weapons, _bagpack_ammo] call R3F_WEIGHT_FNCT_GetItemWeight;
|
||||
};
|
||||
_return = _return + ([(weapons player), (magazines player)] call R3F_WEIGHT_FNCT_GetItemWeight);
|
||||
_english = localize "STR_R3F_WEIGHT_English" == "lb";
|
||||
if(_english) then {
|
||||
_return = _return / 0.45359 ;
|
||||
_return = round (_return * 100)/100;
|
||||
};
|
||||
_return;
|
||||
};
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
/****************************************************************************
|
||||
Copyright (C) 2010 Team ~R3F~
|
||||
This program is free software under the terms of the GNU General Public License version 3.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@authors team-r3f.org
|
||||
@version 1.02
|
||||
@date 20101018
|
||||
*****************************************************************************/
|
||||
|
||||
call compile preprocessFile "R3F_Realism\R3F_Weight\R3F_Weight_Fnct.sqf";
|
||||
|
||||
_void = [] execVM "R3F_Realism\R3F_Weight\R3F_DoWeight.sqf";
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
#define ARMA2_RSCDISPLAYGEARBOX 106
|
||||
#define ARMA2_CAPTIONGEARBOX 1001
|
||||
|
||||
|
||||
#define R3F_WEIGHT_SHORT_DELAY 1
|
||||
#define R3F_WEIGHT_LONG_DELAY 10
|
||||
#define R3F_WEIGHT_MAIN_INCREMENT 1
|
||||
|
||||
|
||||
@@ -7,7 +7,12 @@ OnLoadMissionTime = False;
|
||||
disabledAI = true;
|
||||
disableChannels[]={0,1,2};
|
||||
enableItemsDropping = 0;
|
||||
#include "R3F_Realism\R3F_Weight\R3F_CfgWeight.h"
|
||||
briefing = 0;
|
||||
debriefing = 0;
|
||||
|
||||
onPauseScript = "";
|
||||
loadScreen = "\z\addons\dayz_code\gui\dayz_logo_ca.paa";
|
||||
class Header
|
||||
{
|
||||
gameType = COOP; //DM, Team, Coop, ...
|
||||
|
||||
@@ -0,0 +1,187 @@
|
||||
AllowedVehiclesList = [
|
||||
["AH6X_DZ",1],
|
||||
["AN2_DZ",1],
|
||||
["ArmoredSUV_PMC_DZ",1],
|
||||
["ATV_CZ_EP1",3],
|
||||
["ATV_US_EP1",3],
|
||||
["C130J_US_EP1",1],
|
||||
["car_hatchback",2],
|
||||
["car_sedan",2],
|
||||
["CH_47F_EP1_DZ",1],
|
||||
["CSJ_GyroC",1],
|
||||
["CSJ_GyroCover",1],
|
||||
["CSJ_GyroP",1],
|
||||
["datsun1_civil_1_open",1],
|
||||
["datsun1_civil_2_covered",1],
|
||||
["datsun1_civil_3_open",1],
|
||||
["Fishing_Boat",1],
|
||||
["GAZ_Vodnik",1],
|
||||
["GAZ_Vodnik_MedEvac",1],
|
||||
["GLT_M300_LT",1],
|
||||
["GLT_M300_ST",1],
|
||||
["GNT_C185",1],
|
||||
["GNT_C185C",1],
|
||||
["GNT_C185R",1],
|
||||
["GNT_C185U",1],
|
||||
["hilux1_civil_1_open",1],
|
||||
["hilux1_civil_2_covered",1],
|
||||
["hilux1_civil_3_open_EP1",1],
|
||||
["HMMWV_Ambulance",1],
|
||||
["HMMWV_Ambulance_CZ_DES_EP1",1],
|
||||
["HMMWV_DES_EP1",1],
|
||||
["HMMWV_DZ",1],
|
||||
["HMMWV_M1035_DES_EP1",1],
|
||||
["HMMWV_M1151_M2_CZ_DES_EP1",1],
|
||||
["HMMWV_M998A2_SOV_DES_EP1",1],
|
||||
["Ikarus",1],
|
||||
["Ikarus_TK_CIV_EP1",1],
|
||||
["JetSkiYanahui_Case_Blue",1],
|
||||
["JetSkiYanahui_Case_Green",1],
|
||||
["JetSkiYanahui_Case_Red",1],
|
||||
["JetSkiYanahui_Case_Yellow",1],
|
||||
["Kamaz",1],
|
||||
["KamazRefuel_DZ",1],
|
||||
["Lada1",1],
|
||||
["Lada1_TK_CIV_EP1",1],
|
||||
["Lada2",1],
|
||||
["Lada2_TK_CIV_EP1",1],
|
||||
["LadaLM",1],
|
||||
["LandRover_CZ_EP1",1],
|
||||
["LandRover_MG_TK_EP1",1],
|
||||
["LandRover_Special_CZ_EP1",1],
|
||||
["LandRover_TK_CIV_EP1",1],
|
||||
["M1030_US_DES_EP1",2],
|
||||
["MH6J_DZ",1],
|
||||
["Mi17_Civilian_DZ",1],
|
||||
["Mi17_DZE",1],
|
||||
["MMT_Civ",10],
|
||||
["MtvrRefuel_DES_EP1_DZ",1],
|
||||
["MTVR_DES_EP1",1],
|
||||
["MV22_DZ",1],
|
||||
["Offroad_DSHKM_Gue",1],
|
||||
["Old_bike_TK_INS_EP1",5],
|
||||
["Old_moto_TK_Civ_EP1",2],
|
||||
["PBX",1],
|
||||
["Pickup_PK_GUE",1],
|
||||
["Pickup_PK_INS",1],
|
||||
["Pickup_PK_TK_GUE_EP1",1],
|
||||
["policecar",1],
|
||||
["RHIB",1],
|
||||
["S1203_ambulance_EP1",1],
|
||||
["S1203_TK_CIV_EP1",1],
|
||||
["Skoda",1],
|
||||
["SkodaBlue",1],
|
||||
["SkodaGreen",1],
|
||||
["SkodaRed",1],
|
||||
["Smallboat_1",1],
|
||||
["Smallboat_2",1],
|
||||
["SUV_Blue",1],
|
||||
["SUV_Camo",1],
|
||||
["SUV_Charcoal",1],
|
||||
["SUV_Green",1],
|
||||
["SUV_Orange",1],
|
||||
["SUV_Pink",1],
|
||||
["SUV_Red",1],
|
||||
["SUV_Silver",1],
|
||||
["SUV_TK_CIV_EP1",1],
|
||||
["SUV_White",1],
|
||||
["SUV_Yellow",1],
|
||||
["tractor",1],
|
||||
["TT650_Civ",1],
|
||||
["TT650_Ins",1],
|
||||
["TT650_TK_CIV_EP1",1],
|
||||
["UAZ_CDF",1],
|
||||
["UAZ_INS",1],
|
||||
["UAZ_MG_TK_EP1",1],
|
||||
["UAZ_RU",1],
|
||||
["UAZ_Unarmed_TK_CIV_EP1",1],
|
||||
["UAZ_Unarmed_TK_EP1",1],
|
||||
["UAZ_Unarmed_UN_EP1",1],
|
||||
["UH1H_DZE",1],
|
||||
["UH1Y_DZE",1],
|
||||
["UH60M_EP1_DZ",1],
|
||||
["UralRefuel_TK_EP1_DZ",1],
|
||||
["Ural_CDF",1],
|
||||
["Ural_TK_CIV_EP1",1],
|
||||
["Ural_UN_EP1",1],
|
||||
["V3S_Open_TK_CIV_EP1",1],
|
||||
["V3S_Open_TK_EP1",1],
|
||||
["V3S_Refuel_TK_GUE_EP1_DZ",1],
|
||||
["VIL_alfa_civil",1],
|
||||
["VIL_alfa_civil1",1],
|
||||
["VIL_alfa_civil2",1],
|
||||
["VIL_berlingo",1],
|
||||
["VIL_bmw7_civil",1],
|
||||
["VIL_bmw7_civil1",1],
|
||||
["VIL_bmw7_civil2",1],
|
||||
["VIL_bmw7_civilvip",1],
|
||||
["VIL_citrone_civil",1],
|
||||
["VIL_citrone_civil1",1],
|
||||
["VIL_citrone_civil2",1],
|
||||
["VIL_citrone_civil3",1],
|
||||
["VIL_ducato_bus",1],
|
||||
["VIL_ducato_cargo",1],
|
||||
["VIL_ducato_cargo2",1],
|
||||
["VIL_fobia_civil",1],
|
||||
["VIL_fobia_civil1",1],
|
||||
["VIL_fobia_civil2",1],
|
||||
["VIL_fobia_civil3",1],
|
||||
["VIL_fobia_civil4",1],
|
||||
["VIL_fobia_civil5",1],
|
||||
["VIL_hilux1_civi2",1],
|
||||
["VIL_hilux1_civi3",1],
|
||||
["VIL_hilux1_civil",1],
|
||||
["VIL_hilux1_police",1],
|
||||
["VIL_karoca_civil",1],
|
||||
["VIL_karoca_civil_red",1],
|
||||
["VIL_kia_ceed",1],
|
||||
["VIL_kia_ceed2",1],
|
||||
["VIL_kia_ceed3",1],
|
||||
["VIL_kia_ceed4",1],
|
||||
["VIL_kia_ceeddwa",1],
|
||||
["VIL_kia_ceeddwa2",1],
|
||||
["VIL_kia_ceeddwa3",1],
|
||||
["VIL_kia_ceeddwa4",1],
|
||||
["VIL_kia_ceeddwa5",1],
|
||||
["VIL_kia_ceeddwa6",1],
|
||||
["VIL_lublin_freez",1],
|
||||
["VIL_mondeo_civil",1],
|
||||
["VIL_mondeo_civil1",1],
|
||||
["VIL_mondeo_civil3",1],
|
||||
["VIL_mondeo_civil4",1],
|
||||
["VIL_mondeo_civil5",1],
|
||||
["VIL_octavia_civil",1],
|
||||
["VIL_octavia_civil2",1],
|
||||
["VIL_octavia_civil3",1],
|
||||
["VIL_octavia_civil4",1],
|
||||
["VIL_panda_civil",1],
|
||||
["VIL_panda_civil1",1],
|
||||
["VIL_passat_civil",1],
|
||||
["VIL_passat_civil1",1],
|
||||
["VIL_passat_civil2",1],
|
||||
["VIL_passat_civil3",1],
|
||||
["VIL_passat_civil4",1],
|
||||
["VIL_passat_civil5",1],
|
||||
["VIL_smart_civil",1],
|
||||
["VIL_smart_civil1",1],
|
||||
["VIL_smart_civil2",1],
|
||||
["VIL_smart_civil3",1],
|
||||
["VIL_smart_civil4",1],
|
||||
["VIL_smart_civil5",1],
|
||||
["VIL_sprinter_cargo",1],
|
||||
["VIL_Star_S2000",1],
|
||||
["VIL_Star_S2000o",1],
|
||||
["VIL_transit_civ",1],
|
||||
["VIL_transit_truck",1],
|
||||
["VIL_vivaro_amb",1],
|
||||
["VIL_vivaro_civ",1],
|
||||
["VIL_volvofl",1],
|
||||
["VIL_vwt4_banksec",1],
|
||||
["VIL_vwt4_civ",2],
|
||||
["VolhaLimo_TK_CIV_EP1",1],
|
||||
["Volha_1_TK_CIV_EP1",1],
|
||||
["Volha_2_TK_CIV_EP1",1],
|
||||
["VWGolf",1],
|
||||
["Zodiac",1],
|
||||
["VIL_asistvan_DZE",2]
|
||||
];
|
||||
108
Server Files/MPMissions/DayZ_Epoch_19.FDF_Isle1_a/init.sqf
Normal file
108
Server Files/MPMissions/DayZ_Epoch_19.FDF_Isle1_a/init.sqf
Normal file
@@ -0,0 +1,108 @@
|
||||
/*
|
||||
For DayZ Epoch
|
||||
Addons Credits: Jetski Yanahui by Kol9yN, Zakat, Gerasimow9, YuraPetrov, zGuba, A.Karagod, IceBreakr, Sahbazz
|
||||
*/
|
||||
startLoadingScreen ["","RscDisplayLoadCustom"];
|
||||
cutText ["","BLACK OUT"];
|
||||
enableSaving [false, false];
|
||||
|
||||
//REALLY IMPORTANT VALUES
|
||||
dayZ_instance = 19; //The instance
|
||||
dayzHiveRequest = [];
|
||||
initialized = false;
|
||||
dayz_previousID = 0;
|
||||
|
||||
//disable greeting menu
|
||||
player setVariable ["BIS_noCoreConversations", true];
|
||||
//disable radio messages to be heard and shown in the left lower corner of the screen
|
||||
enableRadio false;
|
||||
|
||||
// DayZ Epoch config
|
||||
spawnShoremode = 1; // Default = 1 (on shore)
|
||||
spawnArea= 1500; // Default = 1500
|
||||
MaxHeliCrashes= 5; // Default = 5
|
||||
MaxVehicleLimit = 200; // Default = 50
|
||||
MaxDynamicDebris = 250; // Default = 100
|
||||
dayz_MapArea = 7000; // Default = 10000
|
||||
|
||||
EpochEvents = [["any","any","any","any",30,"crash_spawner"],["any","any","any","any",0,"crash_spawner"],["any","any","any","any",15,"supply_drop"]];
|
||||
dayz_fullMoonNights = true;
|
||||
|
||||
//Load in compiled functions
|
||||
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\variables.sqf"; //Initilize the Variables (IMPORTANT: Must happen very early)
|
||||
progressLoadingScreen 0.1;
|
||||
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\publicEH.sqf"; //Initilize the publicVariable event handlers
|
||||
progressLoadingScreen 0.2;
|
||||
call compile preprocessFileLineNumbers "\z\addons\dayz_code\medical\setup_functions_med.sqf"; //Functions used by CLIENT for medical
|
||||
progressLoadingScreen 0.4;
|
||||
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\compiles.sqf"; //Compile regular functions
|
||||
progressLoadingScreen 0.5;
|
||||
call compile preprocessFileLineNumbers "server_traders.sqf"; //Compile trader configs
|
||||
progressLoadingScreen 1.0;
|
||||
|
||||
"filmic" setToneMappingParams [0.153, 0.357, 0.231, 0.1573, 0.011, 3.750, 6, 4]; setToneMapping "Filmic";
|
||||
|
||||
/* BIS_Effects_* fixes from Dwarden */
|
||||
BIS_Effects_EH_Killed = compile preprocessFileLineNumbers "\z\addons\dayz_code\system\BIS_Effects\killed.sqf";
|
||||
BIS_Effects_AirDestruction = compile preprocessFileLineNumbers "\z\addons\dayz_code\system\BIS_Effects\AirDestruction.sqf";
|
||||
BIS_Effects_AirDestructionStage2 = compile preprocessFileLineNumbers "\z\addons\dayz_code\system\BIS_Effects\AirDestructionStage2.sqf";
|
||||
|
||||
BIS_Effects_globalEvent = {
|
||||
BIS_effects_gepv = _this;
|
||||
publicVariable "BIS_effects_gepv";
|
||||
_this call BIS_Effects_startEvent;
|
||||
};
|
||||
|
||||
BIS_Effects_startEvent = {
|
||||
switch (_this select 0) do {
|
||||
case "AirDestruction": {
|
||||
[_this select 1] spawn BIS_Effects_AirDestruction;
|
||||
};
|
||||
case "AirDestructionStage2": {
|
||||
[_this select 1, _this select 2, _this select 3] spawn BIS_Effects_AirDestructionStage2;
|
||||
};
|
||||
case "Burn": {
|
||||
[_this select 1, _this select 2, _this select 3, false, true] spawn BIS_Effects_Burn;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
"BIS_effects_gepv" addPublicVariableEventHandler {
|
||||
(_this select 1) call BIS_Effects_startEvent;
|
||||
};
|
||||
|
||||
if ((!isServer) && (isNull player) ) then
|
||||
{
|
||||
waitUntil {!isNull player};
|
||||
waitUntil {time > 3};
|
||||
};
|
||||
|
||||
if ((!isServer) && (player != player)) then
|
||||
{
|
||||
waitUntil {player == player};
|
||||
waitUntil {time > 3};
|
||||
};
|
||||
|
||||
if (isServer) then {
|
||||
call compile preprocessFileLineNumbers "dynamic_vehicle.sqf"; //Compile vehicle configs
|
||||
|
||||
// Add trader citys
|
||||
_nil = [] execVM "mission.sqf";
|
||||
_serverMonitor = [] execVM "\z\addons\dayz_code\system\server_monitor.sqf";
|
||||
};
|
||||
|
||||
if (!isDedicated) then {
|
||||
//Conduct map operations
|
||||
0 fadeSound 0;
|
||||
waitUntil {!isNil "dayz_loadScreenMsg"};
|
||||
dayz_loadScreenMsg = (localize "STR_AUTHENTICATING");
|
||||
|
||||
//Run the player monitor
|
||||
_id = player addEventHandler ["Respawn", {_id = [] spawn player_death;}];
|
||||
_playerMonitor = [] execVM "\z\addons\dayz_code\system\player_monitor.sqf";
|
||||
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
|
||||
|
||||
//Lights
|
||||
//[0,0,true,true,true,58,280,600,[0.698, 0.556, 0.419],"Generator_DZ",0.1] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
|
||||
};
|
||||
#include "\z\addons\dayz_code\system\REsec.sqf"
|
||||
@@ -47,7 +47,7 @@ class Mission
|
||||
items=100;
|
||||
class Item0
|
||||
{
|
||||
position[]={9439.1982,38.157787,25065.07};
|
||||
position[]={10061.913,0.48566359,-9457.3369};
|
||||
azimut=-17.0839;
|
||||
id=11;
|
||||
side="WEST";
|
||||
@@ -58,7 +58,7 @@ class Mission
|
||||
};
|
||||
class Item1
|
||||
{
|
||||
position[]={9527.0459,33.460201,24998.691};
|
||||
position[]={10061.629,0.50118423,-9456.543};
|
||||
azimut=-17.0839;
|
||||
id=0;
|
||||
side="WEST";
|
||||
@@ -71,7 +71,7 @@ class Mission
|
||||
};
|
||||
class Item2
|
||||
{
|
||||
position[]={9460.6084,36.682327,25070.338};
|
||||
position[]={10060.863,0.49191189,-9456.9775};
|
||||
azimut=-17.083944;
|
||||
id=5;
|
||||
side="WEST";
|
||||
@@ -82,7 +82,7 @@ class Mission
|
||||
};
|
||||
class Item3
|
||||
{
|
||||
position[]={9466.3271,36.330471,25066.586};
|
||||
position[]={10061.069,0.51964557,-9455.7041};
|
||||
azimut=-17.083944;
|
||||
id=8;
|
||||
side="WEST";
|
||||
@@ -93,7 +93,7 @@ class Mission
|
||||
};
|
||||
class Item4
|
||||
{
|
||||
position[]={9461.4521,36.630428,25059.414};
|
||||
position[]={10061.346,0.5007363,-9456.5596};
|
||||
azimut=-17.083944;
|
||||
id=18;
|
||||
side="WEST";
|
||||
@@ -104,7 +104,7 @@ class Mission
|
||||
};
|
||||
class Item5
|
||||
{
|
||||
position[]={9472.8428,35.949043,25024.494};
|
||||
position[]={10060.597,0.48439926,-9457.373};
|
||||
azimut=-17.083944;
|
||||
id=2;
|
||||
side="WEST";
|
||||
@@ -115,7 +115,7 @@ class Mission
|
||||
};
|
||||
class Item6
|
||||
{
|
||||
position[]={9482.1748,35.44508,25023.691};
|
||||
position[]={10062.166,0.49333996,-9456.9395};
|
||||
azimut=-17.083937;
|
||||
id=9;
|
||||
side="WEST";
|
||||
@@ -126,7 +126,7 @@ class Mission
|
||||
};
|
||||
class Item7
|
||||
{
|
||||
position[]={9471.6553,36.014,25016.486};
|
||||
position[]={10062.737,0.51209259,-9456.0801};
|
||||
azimut=-17.083944;
|
||||
id=21;
|
||||
side="WEST";
|
||||
@@ -137,7 +137,7 @@ class Mission
|
||||
};
|
||||
class Item8
|
||||
{
|
||||
position[]={9480.3779,35.538086,25016.598};
|
||||
position[]={10062.628,0.48300523,-9457.502};
|
||||
azimut=-17.083944;
|
||||
id=13;
|
||||
side="WEST";
|
||||
@@ -148,7 +148,7 @@ class Mission
|
||||
};
|
||||
class Item9
|
||||
{
|
||||
position[]={9485.624,35.266529,25011.246};
|
||||
position[]={10061.263,0.48891276,-9457.1445};
|
||||
azimut=-17.083944;
|
||||
id=7;
|
||||
side="WEST";
|
||||
@@ -159,7 +159,7 @@ class Mission
|
||||
};
|
||||
class Item10
|
||||
{
|
||||
position[]={9487.7881,35.154541,24961.488};
|
||||
position[]={10061.242,0.51469243,-9455.9199};
|
||||
azimut=-17.0839;
|
||||
id=36;
|
||||
side="WEST";
|
||||
@@ -170,7 +170,7 @@ class Mission
|
||||
};
|
||||
class Item11
|
||||
{
|
||||
position[]={9499.7354,34.564671,24953.842};
|
||||
position[]={10061.346,0.49235049,-9456.9707};
|
||||
azimut=-17.083944;
|
||||
id=25;
|
||||
side="WEST";
|
||||
@@ -181,7 +181,7 @@ class Mission
|
||||
};
|
||||
class Item12
|
||||
{
|
||||
position[]={9510.042,34.120384,24955.832};
|
||||
position[]={10061.799,0.48233649,-9457.5195};
|
||||
azimut=-17.083944;
|
||||
id=43;
|
||||
side="WEST";
|
||||
@@ -192,7 +192,7 @@ class Mission
|
||||
};
|
||||
class Item13
|
||||
{
|
||||
position[]={9509.2002,34.156425,24966.756};
|
||||
position[]={10062.587,0.48967433,-9457.1377};
|
||||
azimut=-17.083944;
|
||||
id=30;
|
||||
side="WEST";
|
||||
@@ -203,7 +203,7 @@ class Mission
|
||||
};
|
||||
class Item14
|
||||
{
|
||||
position[]={9514.917,33.925198,24963.004};
|
||||
position[]={10062.141,0.52065909,-9455.6904};
|
||||
azimut=-17.083944;
|
||||
id=33;
|
||||
side="WEST";
|
||||
@@ -214,7 +214,7 @@ class Mission
|
||||
};
|
||||
class Item15
|
||||
{
|
||||
position[]={9506.0225,34.292988,25077.941};
|
||||
position[]={10062.326,0.50655675,-9456.3135};
|
||||
azimut=-17.083944;
|
||||
id=1;
|
||||
side="WEST";
|
||||
@@ -225,7 +225,7 @@ class Mission
|
||||
};
|
||||
class Item16
|
||||
{
|
||||
position[]={9517.7334,33.812416,25080.293};
|
||||
position[]={10060.65,0.50460398,-9456.3535};
|
||||
azimut=-17.083944;
|
||||
id=4;
|
||||
side="WEST";
|
||||
@@ -236,7 +236,7 @@ class Mission
|
||||
};
|
||||
class Item17
|
||||
{
|
||||
position[]={9519.8818,33.726391,25072.234};
|
||||
position[]={10062.571,0.51665568,-9455.876};
|
||||
azimut=-17.083944;
|
||||
id=3;
|
||||
side="WEST";
|
||||
@@ -247,7 +247,7 @@ class Mission
|
||||
};
|
||||
class Item18
|
||||
{
|
||||
position[]={9522.8506,33.615875,25077.852};
|
||||
position[]={10061.084,0.50072753,-9456.5508};
|
||||
azimut=-17.083944;
|
||||
id=6;
|
||||
side="WEST";
|
||||
@@ -258,7 +258,7 @@ class Mission
|
||||
};
|
||||
class Item19
|
||||
{
|
||||
position[]={9534.5811,33.202934,25082.611};
|
||||
position[]={10060.824,0.50034672,-9456.5586};
|
||||
azimut=-17.083944;
|
||||
id=10;
|
||||
side="WEST";
|
||||
@@ -269,7 +269,7 @@ class Mission
|
||||
};
|
||||
class Item20
|
||||
{
|
||||
position[]={9526.0771,33.496147,25030.26};
|
||||
position[]={10062.197,0.48601699,-9457.3262};
|
||||
azimut=-17.083944;
|
||||
id=16;
|
||||
side="WEST";
|
||||
@@ -280,7 +280,7 @@ class Mission
|
||||
};
|
||||
class Item21
|
||||
{
|
||||
position[]={9531.5615,33.30024,25028.764};
|
||||
position[]={10061.746,0.51539958,-9455.9043};
|
||||
azimut=-17.083944;
|
||||
id=19;
|
||||
side="WEST";
|
||||
@@ -291,7 +291,7 @@ class Mission
|
||||
};
|
||||
class Item22
|
||||
{
|
||||
position[]={9525.6318,33.512684,25021.439};
|
||||
position[]={10062.455,0.5116235,-9456.0908};
|
||||
azimut=-17.083944;
|
||||
id=15;
|
||||
side="WEST";
|
||||
@@ -302,7 +302,7 @@ class Mission
|
||||
};
|
||||
class Item23
|
||||
{
|
||||
position[]={9533.9717,33.222584,25021.32};
|
||||
position[]={10061.742,0.48876801,-9457.1631};
|
||||
azimut=-17.083944;
|
||||
id=23;
|
||||
side="WEST";
|
||||
@@ -313,7 +313,7 @@ class Mission
|
||||
};
|
||||
class Item24
|
||||
{
|
||||
position[]={9554.6123,32.66103,24974.359};
|
||||
position[]={10062.865,0.50678784,-9456.3164};
|
||||
azimut=-17.083944;
|
||||
id=26;
|
||||
side="WEST";
|
||||
@@ -324,7 +324,7 @@ class Mission
|
||||
};
|
||||
class Item25
|
||||
{
|
||||
position[]={9562.7607,32.491489,24979.605};
|
||||
position[]={10062.898,0.48991689,-9457.1328};
|
||||
azimut=-17.083944;
|
||||
id=29;
|
||||
side="WEST";
|
||||
@@ -335,7 +335,7 @@ class Mission
|
||||
};
|
||||
class Item26
|
||||
{
|
||||
position[]={9574.2256,32.302334,24975.828};
|
||||
position[]={10062.276,0.48942754,-9457.1426};
|
||||
azimut=-17.083944;
|
||||
id=31;
|
||||
side="WEST";
|
||||
@@ -346,7 +346,7 @@ class Mission
|
||||
};
|
||||
class Item27
|
||||
{
|
||||
position[]={9568.4717,32.391098,24968.652};
|
||||
position[]={10062.059,0.50630915,-9456.3184};
|
||||
azimut=-17.083944;
|
||||
id=28;
|
||||
side="WEST";
|
||||
@@ -357,7 +357,7 @@ class Mission
|
||||
};
|
||||
class Item28
|
||||
{
|
||||
position[]={9587.292,32.125172,24974.465};
|
||||
position[]={10062.143,0.50159693,-9456.5371};
|
||||
azimut=-17.083944;
|
||||
id=35;
|
||||
side="WEST";
|
||||
@@ -368,7 +368,7 @@ class Mission
|
||||
};
|
||||
class Item29
|
||||
{
|
||||
position[]={9521.4326,33.668514,24920.912};
|
||||
position[]={10062.758,0.4862974,-9457.3223};
|
||||
azimut=-17.083944;
|
||||
id=27;
|
||||
side="WEST";
|
||||
@@ -379,7 +379,7 @@ class Mission
|
||||
};
|
||||
class Item30
|
||||
{
|
||||
position[]={9530.7666,33.325871,24920.109};
|
||||
position[]={10061.123,0.48507878,-9457.3516};
|
||||
azimut=-17.083937;
|
||||
id=34;
|
||||
side="WEST";
|
||||
@@ -390,7 +390,7 @@ class Mission
|
||||
};
|
||||
class Item31
|
||||
{
|
||||
position[]={9520.2451,33.71257,24912.904};
|
||||
position[]={10062.359,0.48267111,-9457.5156};
|
||||
azimut=-17.083944;
|
||||
id=46;
|
||||
side="WEST";
|
||||
@@ -401,7 +401,7 @@ class Mission
|
||||
};
|
||||
class Item32
|
||||
{
|
||||
position[]={9528.9678,33.388878,24913.016};
|
||||
position[]={10061.855,0.52057058,-9455.6875};
|
||||
azimut=-17.083944;
|
||||
id=38;
|
||||
side="WEST";
|
||||
@@ -412,7 +412,7 @@ class Mission
|
||||
};
|
||||
class Item33
|
||||
{
|
||||
position[]={9534.2139,33.214775,24907.664};
|
||||
position[]={10062.303,0.51648098,-9455.877};
|
||||
azimut=-17.083944;
|
||||
id=32;
|
||||
side="WEST";
|
||||
@@ -423,7 +423,7 @@ class Mission
|
||||
};
|
||||
class Item34
|
||||
{
|
||||
position[]={9577.2529,32.257988,24933.08};
|
||||
position[]={10061.752,0.50581813,-9456.332};
|
||||
azimut=-17.083944;
|
||||
id=47;
|
||||
side="WEST";
|
||||
@@ -434,7 +434,7 @@ class Mission
|
||||
};
|
||||
class Item35
|
||||
{
|
||||
position[]={9574.667,32.29586,24926.68};
|
||||
position[]={10060.878,0.484626,-9457.3682};
|
||||
azimut=-17.083944;
|
||||
id=41;
|
||||
side="WEST";
|
||||
@@ -445,7 +445,7 @@ class Mission
|
||||
};
|
||||
class Item36
|
||||
{
|
||||
position[]={9574.2217,32.302387,24917.859};
|
||||
position[]={10062.691,0.5212481,-9455.6836};
|
||||
azimut=-17.083944;
|
||||
id=40;
|
||||
side="WEST";
|
||||
@@ -456,7 +456,7 @@ class Mission
|
||||
};
|
||||
class Item37
|
||||
{
|
||||
position[]={9580.1514,32.215824,24925.182};
|
||||
position[]={10061.285,0.48174036,-9457.543};
|
||||
azimut=-17.083944;
|
||||
id=44;
|
||||
side="WEST";
|
||||
@@ -467,7 +467,7 @@ class Mission
|
||||
};
|
||||
class Item38
|
||||
{
|
||||
position[]={9582.5615,32.185226,24917.74};
|
||||
position[]={10062.016,0.51608139,-9455.8867};
|
||||
azimut=-17.083944;
|
||||
id=48;
|
||||
side="WEST";
|
||||
@@ -478,7 +478,7 @@ class Mission
|
||||
};
|
||||
class Item39
|
||||
{
|
||||
position[]={9606.7842,31.949898,24944};
|
||||
position[]={10060.809,0.51920789,-9455.7129};
|
||||
azimut=-17.083944;
|
||||
id=39;
|
||||
side="WEST";
|
||||
@@ -489,7 +489,7 @@ class Mission
|
||||
};
|
||||
class Item40
|
||||
{
|
||||
position[]={9606.7334,31.950294,24936.324};
|
||||
position[]={10062.859,0.51659203,-9455.8877};
|
||||
azimut=-17.083944;
|
||||
id=37;
|
||||
side="WEST";
|
||||
@@ -500,7 +500,7 @@ class Mission
|
||||
};
|
||||
class Item41
|
||||
{
|
||||
position[]={9613.6807,31.906801,24940.914};
|
||||
position[]={10060.987,0.48855713,-9457.1563};
|
||||
azimut=-17.083944;
|
||||
id=45;
|
||||
side="WEST";
|
||||
@@ -511,7 +511,7 @@ class Mission
|
||||
};
|
||||
class Item42
|
||||
{
|
||||
position[]={9611.4639,31.917625,24932.691};
|
||||
position[]={10060.323,0.49928761,-9456.5938};
|
||||
azimut=-17.0839;
|
||||
id=49;
|
||||
side="WEST";
|
||||
@@ -522,7 +522,7 @@ class Mission
|
||||
};
|
||||
class Item43
|
||||
{
|
||||
position[]={9619.1504,31.880095,24931.195};
|
||||
position[]={10062.447,0.48599854,-9457.3301};
|
||||
azimut=-17.083944;
|
||||
id=42;
|
||||
side="WEST";
|
||||
@@ -533,7 +533,7 @@ class Mission
|
||||
};
|
||||
class Item44
|
||||
{
|
||||
position[]={9528.6631,33.400177,25036.662};
|
||||
position[]={10061.649,0.48547018,-9457.3418};
|
||||
azimut=-17.083944;
|
||||
id=22;
|
||||
side="WEST";
|
||||
@@ -544,7 +544,7 @@ class Mission
|
||||
};
|
||||
class Item45
|
||||
{
|
||||
position[]={9554.5732,32.661907,25039.904};
|
||||
position[]={10062.176,0.51145691,-9456.0918};
|
||||
azimut=-17.083944;
|
||||
id=12;
|
||||
side="WEST";
|
||||
@@ -555,7 +555,7 @@ class Mission
|
||||
};
|
||||
class Item46
|
||||
{
|
||||
position[]={9558.1943,32.580566,25047.582};
|
||||
position[]={10062.287,0.49716586,-9456.7539};
|
||||
azimut=-17.083944;
|
||||
id=14;
|
||||
side="WEST";
|
||||
@@ -566,7 +566,7 @@ class Mission
|
||||
};
|
||||
class Item47
|
||||
{
|
||||
position[]={9562.8721,32.489525,25036.273};
|
||||
position[]={10060.938,0.50473958,-9456.3535};
|
||||
azimut=-17.0839;
|
||||
id=24;
|
||||
side="WEST";
|
||||
@@ -577,7 +577,7 @@ class Mission
|
||||
};
|
||||
class Item48
|
||||
{
|
||||
position[]={9565.0889,32.450558,25044.496};
|
||||
position[]={10061.219,0.5052954,-9456.3398};
|
||||
azimut=-17.083944;
|
||||
id=20;
|
||||
side="WEST";
|
||||
@@ -588,7 +588,7 @@ class Mission
|
||||
};
|
||||
class Item49
|
||||
{
|
||||
position[]={9570.5596,32.356033,25034.777};
|
||||
position[]={10062.419,0.50174809,-9456.5391};
|
||||
azimut=-17.083944;
|
||||
id=17;
|
||||
side="WEST";
|
||||
@@ -599,7 +599,7 @@ class Mission
|
||||
};
|
||||
class Item50
|
||||
{
|
||||
position[]={9559.8037,32.544418,25009.547};
|
||||
position[]={10061.881,0.49267241,-9456.9648};
|
||||
azimut=-17.0839;
|
||||
id=51;
|
||||
side="WEST";
|
||||
@@ -610,7 +610,7 @@ class Mission
|
||||
};
|
||||
class Item51
|
||||
{
|
||||
position[]={9563.4248,32.479816,25017.223};
|
||||
position[]={10062.406,0.52093887,-9455.6895};
|
||||
azimut=-17.0839;
|
||||
id=52;
|
||||
side="WEST";
|
||||
@@ -621,7 +621,7 @@ class Mission
|
||||
};
|
||||
class Item52
|
||||
{
|
||||
position[]={9568.1006,32.397621,25005.916};
|
||||
position[]={10060.682,0.51452869,-9455.9121};
|
||||
azimut=-17.0839;
|
||||
id=55;
|
||||
side="WEST";
|
||||
@@ -632,7 +632,7 @@ class Mission
|
||||
};
|
||||
class Item53
|
||||
{
|
||||
position[]={9575.7881,32.279446,25004.42};
|
||||
position[]={10060.407,0.50415516,-9456.3672};
|
||||
azimut=-17.0839;
|
||||
id=53;
|
||||
side="WEST";
|
||||
@@ -643,7 +643,7 @@ class Mission
|
||||
};
|
||||
class Item54
|
||||
{
|
||||
position[]={9570.3193,32.359554,25014.137};
|
||||
position[]={10061.489,0.51498479,-9455.916};
|
||||
azimut=-17.0839;
|
||||
id=54;
|
||||
side="WEST";
|
||||
@@ -654,7 +654,7 @@ class Mission
|
||||
};
|
||||
class Item55
|
||||
{
|
||||
position[]={9594.292,32.053066,24979.326};
|
||||
position[]={10060.723,0.48801666,-9457.1797};
|
||||
azimut=-17.0839;
|
||||
id=70;
|
||||
side="WEST";
|
||||
@@ -665,7 +665,7 @@ class Mission
|
||||
};
|
||||
class Item56
|
||||
{
|
||||
position[]={9611.9873,31.91507,24997.49};
|
||||
position[]={10060.539,0.50943828,-9456.1309};
|
||||
azimut=-17.0839;
|
||||
id=60;
|
||||
side="WEST";
|
||||
@@ -676,7 +676,7 @@ class Mission
|
||||
};
|
||||
class Item57
|
||||
{
|
||||
position[]={9607.4268,31.944878,24989.133};
|
||||
position[]={10061.483,0.48888871,-9457.1523};
|
||||
azimut=-17.0839;
|
||||
id=68;
|
||||
side="WEST";
|
||||
@@ -687,7 +687,7 @@ class Mission
|
||||
};
|
||||
class Item58
|
||||
{
|
||||
position[]={9613.2139,31.909081,25031.047};
|
||||
position[]={10060.712,0.49586719,-9456.7705};
|
||||
azimut=-17.0839;
|
||||
id=66;
|
||||
side="WEST";
|
||||
@@ -698,7 +698,7 @@ class Mission
|
||||
};
|
||||
class Item59
|
||||
{
|
||||
position[]={9592.1123,32.072224,25027.686};
|
||||
position[]={10060.338,0.48415601,-9457.3789};
|
||||
azimut=-17.0839;
|
||||
id=61;
|
||||
side="WEST";
|
||||
@@ -709,7 +709,7 @@ class Mission
|
||||
};
|
||||
class Item60
|
||||
{
|
||||
position[]={9608.792,31.934212,24978.766};
|
||||
position[]={10061.119,0.49241203,-9456.959};
|
||||
azimut=-17.0839;
|
||||
id=63;
|
||||
side="WEST";
|
||||
@@ -720,7 +720,7 @@ class Mission
|
||||
};
|
||||
class Item61
|
||||
{
|
||||
position[]={9591.7197,32.075672,25048.629};
|
||||
position[]={10061.852,0.50157249,-9456.5293};
|
||||
azimut=-17.0839;
|
||||
id=72;
|
||||
side="WEST";
|
||||
@@ -731,7 +731,7 @@ class Mission
|
||||
};
|
||||
class Item62
|
||||
{
|
||||
position[]={9614.0303,31.905096,25024.578};
|
||||
position[]={10061.537,0.48192456,-9457.5371};
|
||||
azimut=-17.0839;
|
||||
id=57;
|
||||
side="WEST";
|
||||
@@ -742,7 +742,7 @@ class Mission
|
||||
};
|
||||
class Item63
|
||||
{
|
||||
position[]={9656.8926,31.833845,25005.896};
|
||||
position[]={10060.34,0.4914068,-9456.9863};
|
||||
azimut=-17.0839;
|
||||
id=58;
|
||||
side="WEST";
|
||||
@@ -753,7 +753,7 @@ class Mission
|
||||
};
|
||||
class Item64
|
||||
{
|
||||
position[]={9600.5342,31.998726,24999.465};
|
||||
position[]={10061.327,0.51015007,-9456.124};
|
||||
azimut=-17.0839;
|
||||
id=62;
|
||||
side="WEST";
|
||||
@@ -764,7 +764,7 @@ class Mission
|
||||
};
|
||||
class Item65
|
||||
{
|
||||
position[]={9617.2363,31.889441,25007.1};
|
||||
position[]={10060.588,0.49168447,-9456.9785};
|
||||
azimut=-17.0839;
|
||||
id=75;
|
||||
side="WEST";
|
||||
@@ -775,7 +775,7 @@ class Mission
|
||||
};
|
||||
class Item66
|
||||
{
|
||||
position[]={9606.835,31.949497,25009.832};
|
||||
position[]={10060.465,0.49561435,-9456.7773};
|
||||
azimut=-17.0839;
|
||||
id=56;
|
||||
side="WEST";
|
||||
@@ -786,7 +786,7 @@ class Mission
|
||||
};
|
||||
class Item67
|
||||
{
|
||||
position[]={9617.0029,31.890579,24984.313};
|
||||
position[]={10060.423,0.51405299,-9455.9219};
|
||||
azimut=-17.0839;
|
||||
id=73;
|
||||
side="WEST";
|
||||
@@ -797,7 +797,7 @@ class Mission
|
||||
};
|
||||
class Item68
|
||||
{
|
||||
position[]={9602.3076,31.984871,25016.029};
|
||||
position[]={10062.912,0.48316342,-9457.5};
|
||||
azimut=-17.0839;
|
||||
id=69;
|
||||
side="WEST";
|
||||
@@ -808,7 +808,7 @@ class Mission
|
||||
};
|
||||
class Item69
|
||||
{
|
||||
position[]={9604.6709,31.966408,25039.619};
|
||||
position[]={10060.33,0.50886947,-9456.1484};
|
||||
azimut=-17.0839;
|
||||
id=67;
|
||||
side="WEST";
|
||||
@@ -819,7 +819,7 @@ class Mission
|
||||
};
|
||||
class Item70
|
||||
{
|
||||
position[]={9626.6113,31.856575,24990.945};
|
||||
position[]={10062.082,0.48250431,-9457.5215};
|
||||
azimut=-17.0839;
|
||||
id=65;
|
||||
side="WEST";
|
||||
@@ -830,7 +830,7 @@ class Mission
|
||||
};
|
||||
class Item71
|
||||
{
|
||||
position[]={9625.7871,31.858988,25013.621};
|
||||
position[]={10061.646,0.49232388,-9456.9805};
|
||||
azimut=-17.0839;
|
||||
id=74;
|
||||
side="WEST";
|
||||
@@ -841,7 +841,7 @@ class Mission
|
||||
};
|
||||
class Item72
|
||||
{
|
||||
position[]={9624.9746,31.861368,25031.873};
|
||||
position[]={10061.223,0.49639964,-9456.7627};
|
||||
azimut=-17.0839;
|
||||
id=71;
|
||||
side="WEST";
|
||||
@@ -852,7 +852,7 @@ class Mission
|
||||
};
|
||||
class Item73
|
||||
{
|
||||
position[]={9648.6602,31.828423,25022.27};
|
||||
position[]={10062.029,0.48947349,-9457.1367};
|
||||
azimut=-17.0839;
|
||||
id=59;
|
||||
side="WEST";
|
||||
@@ -863,7 +863,7 @@ class Mission
|
||||
};
|
||||
class Item74
|
||||
{
|
||||
position[]={9647.4346,31.829618,25012.732};
|
||||
position[]={10062.729,0.49362645,-9456.9434};
|
||||
azimut=-17.0839;
|
||||
id=64;
|
||||
side="WEST";
|
||||
@@ -874,7 +874,7 @@ class Mission
|
||||
};
|
||||
class Item75
|
||||
{
|
||||
position[]={9462.9678,36.537151,24919.863};
|
||||
position[]={10062.848,0.49779847,-9456.7402};
|
||||
azimut=-17.0839;
|
||||
id=81;
|
||||
side="WEST";
|
||||
@@ -885,7 +885,7 @@ class Mission
|
||||
};
|
||||
class Item76
|
||||
{
|
||||
position[]={9472.3037,35.978516,24919.059};
|
||||
position[]={10062.427,0.49308991,-9456.957};
|
||||
azimut=-17.0839;
|
||||
id=83;
|
||||
side="WEST";
|
||||
@@ -896,7 +896,7 @@ class Mission
|
||||
};
|
||||
class Item77
|
||||
{
|
||||
position[]={9475.751,35.789993,24906.613};
|
||||
position[]={10060.317,0.51835966,-9455.7324};
|
||||
azimut=-17.0839;
|
||||
id=82;
|
||||
side="WEST";
|
||||
@@ -907,7 +907,7 @@ class Mission
|
||||
};
|
||||
class Item78
|
||||
{
|
||||
position[]={9470.5049,36.07692,24911.965};
|
||||
position[]={10061.334,0.51994085,-9455.6973};
|
||||
azimut=-17.0839;
|
||||
id=84;
|
||||
side="WEST";
|
||||
@@ -918,7 +918,7 @@ class Mission
|
||||
};
|
||||
class Item79
|
||||
{
|
||||
position[]={9461.7842,36.610001,24911.855};
|
||||
position[]={10061.004,0.48146468,-9457.5537};
|
||||
azimut=-17.0839;
|
||||
id=85;
|
||||
side="WEST";
|
||||
@@ -929,7 +929,7 @@ class Mission
|
||||
};
|
||||
class Item80
|
||||
{
|
||||
position[]={9447.5068,37.56892,24943.432};
|
||||
position[]={10060.955,0.51459372,-9455.9141};
|
||||
azimut=-17.0839;
|
||||
id=77;
|
||||
side="WEST";
|
||||
@@ -940,7 +940,7 @@ class Mission
|
||||
};
|
||||
class Item81
|
||||
{
|
||||
position[]={9444.0596,37.811306,24955.877};
|
||||
position[]={10060.451,0.48779804,-9457.1816};
|
||||
azimut=-17.0839;
|
||||
id=78;
|
||||
side="WEST";
|
||||
@@ -951,7 +951,7 @@ class Mission
|
||||
};
|
||||
class Item82
|
||||
{
|
||||
position[]={9442.2607,37.937782,24948.781};
|
||||
position[]={10060.762,0.48143363,-9457.5498};
|
||||
azimut=-17.0839;
|
||||
id=79;
|
||||
side="WEST";
|
||||
@@ -962,7 +962,7 @@ class Mission
|
||||
};
|
||||
class Item83
|
||||
{
|
||||
position[]={9434.7256,38.498482,24956.68};
|
||||
position[]={10061.354,0.48515135,-9457.3535};
|
||||
azimut=-17.0839;
|
||||
id=76;
|
||||
side="WEST";
|
||||
@@ -973,7 +973,7 @@ class Mission
|
||||
};
|
||||
class Item84
|
||||
{
|
||||
position[]={9433.5381,38.588959,24948.672};
|
||||
position[]={10061.615,0.51036584,-9456.123};
|
||||
azimut=-17.0839;
|
||||
id=80;
|
||||
side="WEST";
|
||||
@@ -984,7 +984,7 @@ class Mission
|
||||
};
|
||||
class Item85
|
||||
{
|
||||
position[]={9443.0771,37.88036,24986.201};
|
||||
position[]={10061.468,0.49641067,-9456.7676};
|
||||
azimut=-17.0839;
|
||||
id=97;
|
||||
side="WEST";
|
||||
@@ -995,7 +995,7 @@ class Mission
|
||||
};
|
||||
class Item86
|
||||
{
|
||||
position[]={9439.6318,38.124775,24998.646};
|
||||
position[]={10060.976,0.49599296,-9456.7744};
|
||||
azimut=-17.0839;
|
||||
id=98;
|
||||
side="WEST";
|
||||
@@ -1006,7 +1006,7 @@ class Mission
|
||||
};
|
||||
class Item87
|
||||
{
|
||||
position[]={9437.8311,38.261929,24991.551};
|
||||
position[]={10062.006,0.49694812,-9456.7559};
|
||||
azimut=-17.0839;
|
||||
id=99;
|
||||
side="WEST";
|
||||
@@ -1017,7 +1017,7 @@ class Mission
|
||||
};
|
||||
class Item88
|
||||
{
|
||||
position[]={9429.1084,38.931625,24991.441};
|
||||
position[]={10062.703,0.50217605,-9456.5273};
|
||||
azimut=-17.0839;
|
||||
id=100;
|
||||
side="WEST";
|
||||
@@ -1028,7 +1028,7 @@ class Mission
|
||||
};
|
||||
class Item89
|
||||
{
|
||||
position[]={9430.2959,38.835926,24999.449};
|
||||
position[]={10060.561,0.50000423,-9456.5664};
|
||||
azimut=-17.0839;
|
||||
id=96;
|
||||
side="WEST";
|
||||
@@ -1039,7 +1039,7 @@ class Mission
|
||||
};
|
||||
class Item90
|
||||
{
|
||||
position[]={9420.4014,39.645851,25061.246};
|
||||
position[]={10060.484,0.48102146,-9457.5654};
|
||||
azimut=-17.0839;
|
||||
id=87;
|
||||
side="WEST";
|
||||
@@ -1050,7 +1050,7 @@ class Mission
|
||||
};
|
||||
class Item91
|
||||
{
|
||||
position[]={9437.6318,38.27713,25025.684};
|
||||
position[]={10060.546,0.51899832,-9455.7129};
|
||||
azimut=-17.0839;
|
||||
id=92;
|
||||
side="WEST";
|
||||
@@ -1061,7 +1061,7 @@ class Mission
|
||||
};
|
||||
class Item92
|
||||
{
|
||||
position[]={9416.9561,39.946323,25073.691};
|
||||
position[]={10061.077,0.50986743,-9456.1289};
|
||||
azimut=-17.0839;
|
||||
id=88;
|
||||
side="WEST";
|
||||
@@ -1072,7 +1072,7 @@ class Mission
|
||||
};
|
||||
class Item93
|
||||
{
|
||||
position[]={9415.1553,40.104576,25066.598};
|
||||
position[]={10061.866,0.51103616,-9456.0996};
|
||||
azimut=-17.0839;
|
||||
id=89;
|
||||
side="WEST";
|
||||
@@ -1083,7 +1083,7 @@ class Mission
|
||||
};
|
||||
class Item94
|
||||
{
|
||||
position[]={9406.4326,40.885208,25066.486};
|
||||
position[]={10062.615,0.50679302,-9456.3105};
|
||||
azimut=-17.0839;
|
||||
id=90;
|
||||
side="WEST";
|
||||
@@ -1094,7 +1094,7 @@ class Mission
|
||||
};
|
||||
class Item95
|
||||
{
|
||||
position[]={9407.6201,40.776176,25074.494};
|
||||
position[]={10061.719,0.49692523,-9456.75};
|
||||
azimut=-17.0839;
|
||||
id=86;
|
||||
side="WEST";
|
||||
@@ -1105,7 +1105,7 @@ class Mission
|
||||
};
|
||||
class Item96
|
||||
{
|
||||
position[]={9434.1826,38.53986,25038.129};
|
||||
position[]={10061.6,0.52023011,-9455.6934};
|
||||
azimut=-17.0839;
|
||||
id=93;
|
||||
side="WEST";
|
||||
@@ -1116,7 +1116,7 @@ class Mission
|
||||
};
|
||||
class Item97
|
||||
{
|
||||
position[]={9432.3857,38.676735,25031.035};
|
||||
position[]={10061.483,0.5053888,-9456.3438};
|
||||
azimut=-17.0839;
|
||||
id=94;
|
||||
side="WEST";
|
||||
@@ -1127,7 +1127,7 @@ class Mission
|
||||
};
|
||||
class Item98
|
||||
{
|
||||
position[]={9424.8486,39.281052,25038.932};
|
||||
position[]={10062.564,0.49750501,-9456.7441};
|
||||
azimut=-17.0839;
|
||||
id=91;
|
||||
side="WEST";
|
||||
@@ -1138,7 +1138,7 @@ class Mission
|
||||
};
|
||||
class Item99
|
||||
{
|
||||
position[]={9423.6631,39.378284,25030.924};
|
||||
position[]={10060.788,0.50937861,-9456.1406};
|
||||
azimut=-17.0839;
|
||||
id=95;
|
||||
side="WEST";
|
||||
@@ -1157,7 +1157,7 @@ class Mission
|
||||
items=1;
|
||||
class Item0
|
||||
{
|
||||
position[]={708.96582,35.858719,3533.1272};
|
||||
position[]={-143.93861,0.52647489,2319.5012};
|
||||
id=50;
|
||||
side="LOGIC";
|
||||
vehicle="FunctionsManager";
|
||||
@@ -1179,7 +1179,7 @@ class Mission
|
||||
};
|
||||
class Item1
|
||||
{
|
||||
position[]={9451.3311,37.303909,24956.383};
|
||||
position[]={10061.47,0.50175238,-9456.5117};
|
||||
name="respawn_west";
|
||||
type="Empty";
|
||||
};
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
/****************************************************************************
|
||||
Copyright (C) 2010 Team ~R3F~
|
||||
This program is free software under the terms of the GNU General Public License version 3.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@authors team-r3f.org
|
||||
@version 1.00
|
||||
@date 20101006
|
||||
*****************************************************************************/
|
||||
|
||||
Language, English, French
|
||||
|
||||
#include "R3F_Realism\R3F_stringtable.csv"
|
||||
|
||||
|
Can't render this file because it contains an unexpected character in line 13 and column 10.
|
Reference in New Issue
Block a user