0.961 Takistan

Trader City's built by: AXLE http://www.twitch.tv/axles
This commit is contained in:
vbawol
2013-02-17 09:17:59 -06:00
parent e32d70c97b
commit e209908387
23 changed files with 4170 additions and 110 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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.

View File

@@ -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
[_voil, _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;

View File

@@ -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

View File

@@ -0,0 +1,78 @@
/****************************************************************************
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_Wait4Effect = {
private ["_delay","_st"];
_delay = _this select 0;
_st = time;
while {((time - _st) < _delay) && (alive player)} do
{
sleep 0.100;
};
};
R3F_TIRED_FNCT_Effect_Off = {
private ["_handle"];
_handle = _this select 0;
_handle ppEffectEnable false;
ppEffectDestroy _handle;
sleep 0.02;
};
R3F_TIRED_FNCT_MkVoile = {
private ["_handle"];
if (ppEffectCommitted "ColorCorrections") then {
_handle = ppEffectCreate ["ColorCorrections", 1515];
_handle ppEffectEnable true;
_handle;
}else{
-1;
};
};
R3F_TIRED_FNCT_Voile_Noir = {
private ["_handle","_level"];
_handle = _this select 0;
_level = _this select 1;
_handle ppEffectAdjust [
_level,
_level,
0,
[0,0,0,0],
[1.30,1.30,1.30,1.30],
[0,0,0,0]
];
_handle ppEffectCommit 0.1;
waituntil{ppEffectCommitted "ColorCorrections";};
if(_level < R3F_TIRED_SHORTNESS_THRESHOLD ) then{
enableCamShake true;
addCamShake [5-_level, 1, 2];
}else{
enableCamShake false;
};
};
R3F_TIRED_FNCT_DoBlackVanish = {
titleText ["", "BLACK OUT",4];
player playMoveNow "AmovPpneMstpSrasWrflDnon";
0 fadeSound 0;
[R3F_TIRED_UNCONSCIOUSNESS_DURATION] call R3F_TIRED_FNCT_Wait4Effect;
if (alive player) then {
titleText ["", "BLACK IN",4];
0 fadeSound 1;
};
};

View File

@@ -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";

View File

@@ -0,0 +1,3 @@

R3F_VERSION_TIRED, "1.02", "1.02"
1 R3F_VERSION_TIRED 1.02 1.02

File diff suppressed because it is too large Load Diff

View File

@@ -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 ;
};
};

View File

@@ -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

View File

@@ -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"
1 /****************************************************************************
2 Copyright (C) 2010 Team ~R3F~
3 This program is free software under the terms of the GNU General Public License version 3.
4 You should have received a copy of the GNU General Public License
5 along with this program. If not see <http://www.gnu.org/licenses/>.
6 @authors team-r3f.org
7 @version 1.00
8 @date 20101006
9 *****************************************************************************/
10 R3F_VERSION_WEIGHTED 1.04 1.04
11 STR_R3F_WEIGHT_InGearBox %1 | Weight carried : %2 lb %1 | Poids transporté : %2 Kg
12 STR_R3F_WEIGHT_English lb Kg

View File

@@ -0,0 +1,72 @@
/****************************************************************************
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{
#ifdef R3F_WEIGHT_SHOW_CLASSES_NOT_FOUND
diag_log format["Class not found %1", _x];
#endif
};
};
}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;
};

View File

@@ -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";

View File

@@ -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

View File

@@ -1,96 +0,0 @@
/*%FSM<COMPILE "D:\Program Files (x86)\Bohemia Interactive\Tools\FSM Editor Personal Edition\scriptedFSM.cfg, stdin">*/
/*%FSM<HEAD>*/
/*
item0[] = {"init",0,250,-52.011097,-242.579758,37.988903,-192.579758,0.000000,"init"};
item1[] = {"true",8,218,-42.857147,-180.166443,47.142853,-130.166443,0.000000,"true"};
item2[] = {"Broadcast",2,250,-37.031898,-113.592247,52.968117,-63.592247,0.000000,"Broadcast"};
item3[] = {"isRetard",4,218,-85.298180,-33.703201,4.701797,16.296804,0.000000,"isRetard"};
item4[] = {"I_has_small_dick",2,250,-27.045757,58.668503,62.954262,108.668503,0.000000,"I has small dick"};
item5[] = {"isOwned",4,218,43.689316,-30.790573,133.689301,19.209412,0.000000,"isOwned"};
link0[] = {0,1};
link1[] = {1,2};
link2[] = {2,3};
link3[] = {3,4};
link4[] = {4,5};
link5[] = {5,2};
globals[] = {0.000000,0,0,0,16777215,640,480,1,8,6316128,1,-306.241333,293.758667,267.741943,-346.774170,372,381,1};
window[] = {0,-1,-1,-1,-1,576,50,812,50,1,390};
*//*%FSM</HEAD>*/
class FSM
{
fsmName = "stdin";
class States
{
/*%FSM<STATE "init">*/
class init
{
name = "init";
init = /*%FSM<STATEINIT""">*/""/*%FSM</STATEINIT""">*/;
precondition = /*%FSM<STATEPRECONDITION""">*/""/*%FSM</STATEPRECONDITION""">*/;
class Links
{
/*%FSM<LINK "true">*/
class true
{
priority = 0.000000;
to="Broadcast";
precondition = /*%FSM<CONDPRECONDITION""">*/""/*%FSM</CONDPRECONDITION""">*/;
condition=/*%FSM<CONDITION""">*/""/*%FSM</CONDITION""">*/;
action=/*%FSM<ACTION""">*/""/*%FSM</ACTION""">*/;
};
/*%FSM</LINK>*/
};
};
/*%FSM</STATE>*/
/*%FSM<STATE "Broadcast">*/
class Broadcast
{
name = "Broadcast";
init = /*%FSM<STATEINIT""">*/""/*%FSM</STATEINIT""">*/;
precondition = /*%FSM<STATEPRECONDITION""">*/""/*%FSM</STATEPRECONDITION""">*/;
class Links
{
/*%FSM<LINK "isRetard">*/
class isRetard
{
priority = 0.000000;
to="I_has_small_dick";
precondition = /*%FSM<CONDPRECONDITION""">*/""/*%FSM</CONDPRECONDITION""">*/;
condition=/*%FSM<CONDITION""">*/"(dialog&&isNull(findDisplay 106)&&isNull(findDisplay 6902))||(!isNil(""nil"")&&alive(player))"/*%FSM</CONDITION""">*/;
action=/*%FSM<ACTION""">*/""/*%FSM</ACTION""">*/;
};
/*%FSM</LINK>*/
};
};
/*%FSM</STATE>*/
/*%FSM<STATE "I_has_small_dick">*/
class I_has_small_dick
{
name = "I_has_small_dick";
init = /*%FSM<STATEINIT""">*/"closeDialog 0;" \n
"player enableSimulation false;" \n
"_tinypenis = format[""AntiCheat: Incredibly small penis detected for %1 with UID %2"",name player,getPlayerUID player];" \n
"player setVariable [""cheat"",_tinypenis,true];"/*%FSM</STATEINIT""">*/;
precondition = /*%FSM<STATEPRECONDITION""">*/""/*%FSM</STATEPRECONDITION""">*/;
class Links
{
/*%FSM<LINK "isOwned">*/
class isOwned
{
priority = 0.000000;
to="Broadcast";
precondition = /*%FSM<CONDPRECONDITION""">*/""/*%FSM</CONDPRECONDITION""">*/;
condition=/*%FSM<CONDITION""">*/"!dialog&&!alive(player)"/*%FSM</CONDITION""">*/;
action=/*%FSM<ACTION""">*/""/*%FSM</ACTION""">*/;
};
/*%FSM</LINK>*/
};
};
/*%FSM</STATE>*/
};
initState="init";
finalStates[] =
{
};
};
/*%FSM</COMPILE>*/

View File

@@ -5,9 +5,12 @@ OnLoadIntro = "Welcome to Takistan";
OnLoadIntroTime = False; OnLoadIntroTime = False;
OnLoadMissionTime = False; OnLoadMissionTime = False;
disabledAI = true; disabledAI = true;
disableChannels[]={0,2,6}; disableChannels[]={1,2,6};
enableItemsDropping=0; enableItemsDropping=0;
#include "R3F_Realism\R3F_Weight\R3F_CfgWeight.h"
onPauseScript = "\z\addons\dayz_code\compile\player_onPause.sqf";
loadScreen = "\z\addons\dayz_code\gui\dayz_logo_ca.paa";
class Header class Header
{ {
gameType = COOP; //DM, Team, Coop, ... gameType = COOP; //DM, Team, Coop, ...

View File

@@ -0,0 +1,73 @@
AllowedVehiclesList = [
["Old_moto_TK_Civ_EP1",10],
["MMT_Civ",10],
["Old_bike_TK_INS_EP1",10],
["TT650_Ins",1],
["TT650_Civ",1],
["TT650_TK_CIV_EP1",1],
["ATV_US_EP1",10],
["hilux1_civil_3_open_EP1",5],
["hilux1_civil_2_covered",2],
["datsun1_civil_3_open",5],
["Pickup_PK_TK_GUE_EP1",5],
["Octavia_ACR",2],
["VWGolf",2],
["Lada1",1],
["Lada2",1],
["LadaLM",1],
["Lada2_TK_CIV_EP1",2],
["Skoda",1],
["SkodaGreen",1],
["SkodaRed",1],
["SkodaBlue",1],
["car_sedan",2],
["car_hatchback",2],
["policecar",1],
["GLT_M300_LT",1],
["GLT_M300_ST",1],
["Volha_1_TK_CIV_EP1",2],
["VolhaLimo_TK_CIV_EP1",2],
["UAZ_Unarmed_TK_EP1",1],
["UAZ_RU",1],
["UAZ_INS",1],
["Ikarus",3],
["SUV_TK_CIV_EP1",2],
["SUV_Green",1],
["SUV_Yellow",1],
["SUV_White",1],
["SUV_Silver",1],
["SUV_Red",1],
["SUV_Pink",1],
["SUV_Orange",1],
["SUV_Charcoal",1],
["SUV_Blue",1],
["UH1H_DZ",2],
["Mi17_Civilian_DZ",3],
["Mi17_DZ",1],
["LandRover_CZ_EP1",2],
["HMMWV_Ambulance",2],
["HMMWV_DES_EP1",1],
["PBX",3],
["Zodiac",2],
["RHIB",2],
["Fishing_Boat",2],
["Smallboat_1",2],
["Smallboat_2",2],
["M113Ambul_UN_EP1",1],
["KamazRefuel",1],
["UralRefuel_TK_EP1",1],
["MtvrRefuel_DES_EP1",1],
["Ural_UN_EP1",2],
["Ural_TK_CIV_EP1",2],
["Ural_CDF",2],
["Kamaz",2],
["tractor",3],
["CSJ_GyroP",5],
["S1203_ambulance_EP1",1],
["S1203_TK_CIV_EP1",2],
["MH6J_DZ",1],
["AH6X_DZ",1],
["MTVR_DES_EP1",1],
["LandRover_MG_TK_EP1",1],
["M1030_US_DES_EP1",1]
];

View File

@@ -1,24 +1,31 @@
startLoadingScreen ["","DayZ_loadingScreen"];
/* /*
INITILIZATION INITILIZATION
*/ */
startLoadingScreen ["","RscDisplayLoadCustom"];
cutText ["","BLACK OUT"];
enableSaving [false, false]; enableSaving [false, false];
//REALLY IMPORTANT VALUES //REALLY IMPORTANT VALUES
dayZ_instance = 1; //The instance dayZ_instance = 1; //The instance
hiveInUse = true; dayzHiveRequest = [];
initialized = false; initialized = false;
dayz_previousID = 0; 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;
// AMP config // AMP config
spawnShoremode = 0; // Default = 1 (on shore) spawnShoremode = 0; // Default = 1 (on shore)
spawnArea= 1000; // Default = 1500 spawnArea= 1000; // Default = 1500
MaxHeliCrashes= 5; // Default = 5 MaxHeliCrashes= 5; // Default = 5
MaxVehicleLimit = 50; // Default = 50 MaxVehicleLimit = 200; // Default = 50
MaxDynamicDebris = 100; // Default = 100 MaxDynamicDebris = 400; // Default = 100
dayz_MapArea = 12000; // Default = 10000 dayz_MapArea = 12000; // Default = 10000
dayz_maxLocalZombies = 0; // Default = 40 dayz_maxLocalZombies = 30; // Default = 40
//Load in compiled functions
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\variables.sqf"; //Initilize the Variables (IMPORTANT: Must happen very early) call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\variables.sqf"; //Initilize the Variables (IMPORTANT: Must happen very early)
progressLoadingScreen 0.1; progressLoadingScreen 0.1;
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\publicEH.sqf"; //Initilize the publicVariable event handlers call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\publicEH.sqf"; //Initilize the publicVariable event handlers
@@ -26,6 +33,8 @@ progressLoadingScreen 0.2;
call compile preprocessFileLineNumbers "\z\addons\dayz_code\medical\setup_functions_med.sqf"; //Functions used by CLIENT for medical call compile preprocessFileLineNumbers "\z\addons\dayz_code\medical\setup_functions_med.sqf"; //Functions used by CLIENT for medical
progressLoadingScreen 0.4; progressLoadingScreen 0.4;
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\compiles.sqf"; //Compile regular functions 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; progressLoadingScreen 1.0;
"filmic" setToneMappingParams [0.153, 0.357, 0.231, 0.1573, 0.011, 3.750, 6, 4]; setToneMapping "Filmic"; "filmic" setToneMappingParams [0.153, 0.357, 0.231, 0.1573, 0.011, 3.750, 6, 4]; setToneMapping "Filmic";
@@ -38,22 +47,26 @@ waitUntil {time > 3};
if ((!isServer) && (player != player)) then if ((!isServer) && (player != player)) then
{ {
waitUntil {player == player}; waitUntil {player == player};
waitUntil {time > 3}; waitUntil {time > 3};
}; };
if (isServer) then { if (isServer) then {
//Run the server monitor call compile preprocessFileLineNumbers "dynamic_vehicle.sqf"; //Compile vehicle configs
hiveInUse = true;
_serverMonitor = [] execVM "\z\addons\dayz_server\system\server_monitor.sqf"; // Add trader citys
_nil = [] execVM "mission.sqf";
_serverMonitor = [] execVM "\z\addons\dayz_code\system\server_monitor.sqf";
}; };
if (!isDedicated) then { if (!isDedicated) then {
//Conduct map operations //Conduct map operations
0 fadeSound 0; 0 fadeSound 0;
0 cutText [(localize "STR_AUTHENTICATING"), "BLACK FADED",60]; waitUntil {!isNil "dayz_loadScreenMsg"};
dayz_loadScreenMsg = (localize "STR_AUTHENTICATING");
//Run the player monitor //Run the player monitor
_id = player addEventHandler ["Respawn", {_id = [] spawn player_death;}]; _id = player addEventHandler ["Respawn", {_id = [] spawn player_death;}];
_playerMonitor = [] execVM "\z\addons\dayz_code\system\player_monitor.sqf"; _playerMonitor = [] execVM "\z\addons\dayz_code\system\player_monitor.sqf";
_void = [] execVM "R3F_Realism\R3F_Realism_Init.sqf";
}; };

File diff suppressed because it is too large Load Diff

View File

@@ -13,7 +13,17 @@ class Mission
"ca_modules_functions", "ca_modules_functions",
"warfarebuildings", "warfarebuildings",
"ind_tank", "ind_tank",
"camisc_e" "camisc_e",
"glt_m300t",
"sigisolda",
"suv_col",
"csj_gyroac",
"cawheeled_acr_octavia",
"CAWheeled_E_ATV",
"CAWheeled_E_LandRover",
"cawheeled_acr_t810",
"cawheeled_acr_hmmwv",
"camisc_acr_pbx"
}; };
addOnsAuto[]= addOnsAuto[]=
{ {

View File

@@ -0,0 +1,125 @@
// DayZ Epoch TRADERS
serverTraders = [
"Functionary1",
"RU_Profiteer3",
"Profiteer1",
"RU_Sportswoman5",
"TK_CIV_Takistani05_EP1",
"Dr_Annie_Baker_EP1",
"Woodlander2",
"TK_CIV_Takistani03_EP1",
"TK_CIV_Takistani06_EP1",
"TK_CIV_Takistani04_EP1",
"TK_CIV_Woman03_EP1",
"TK_CIV_Woman02_EP1",
"RU_Profiteer2",
"RU_Damsel4"
];
// Metals Traders
menu_Functionary1 = [
[["Vaults",100411]],
[
["ItemTinBar","ItemAluminumBar",1,2,"buy","Aluminum","Tin",108],
["ItemAluminumBar","ItemTinBar",2,1,"buy","Tin","Aluminum",107],
["ItemCopperBar","ItemTinBar",1,2,"buy","Tin","Copper",106],
["ItemTinBar","ItemCopperBar",2,1,"buy","Copper","Tin",105],
["ItemSilverBar","ItemCopperBar10oz",1,1,"buy","10oz Copper","Silver",104],
["ItemCopperBar10oz","ItemSilverBar",1,1,"buy","Silver","10oz Copper",103],
["ItemGoldBar","ItemSilverBar10oz",1,3,"buy","10oz Silver","Gold",102],
["ItemSilverBar10oz","ItemGoldBar",3,1,"buy","Gold","10oz Silver",101]
],
"neutral"
];
// High end Weapons
menu_RU_Profiteer3 = [
[["Assault Rifle",100014],["Machine Gun",100015],["Sniper Rifle",100016],["Explosives",100023]],
[],
"neutral"
];
// High end ammo
menu_Profiteer1 = [
[["Assault Rifle Ammo",100004],["Machine Gun Ammo",100005],["Sniper Rifle Ammo",100006]],
[],
"neutral"
];
// Can Traders
menu_RU_Sportswoman5 = [
[["Food and Drinks",100051],["Backpacks",100052],["Toolbelt Items",100053],["Clothes",100054]],
[
["ItemCopperBar","TrashJackDaniels",1,1,"buy","Empty Wiskey Bottle","Copper Bar",101]
],
"friendly"
];
// Parts Traders
menu_TK_CIV_Takistani05_EP1 = [
[["Vehicle Parts",100021],["Building Supplies",100022]],
[],
"friendly"
];
// Doctors
menu_Dr_Annie_Baker_EP1 = [
[["Medical Supplies",100031],["Chem-lites/Flares",100032],["Smoke Grenades",100033]],
[["FoodBioMeat","ItemZombieParts",1,1,"buy","Zombie Parts","Bio Meat",101]],
"friendly"
];
// Auto Traders
menu_Woodlander2 = [
[["Trucks Armed",100422],["UAZ",100046],["Helicopter Armed",100444],["Military Armed",100455],["Fuel Trucks",100047],["Heavy Armor Unarmed",100048]],
[],
"friendly"
];
// START Camp #2
// Car Parts
menu_TK_CIV_Takistani03_EP1 = [
[["Vehicle Parts",2121],["Building Supplies",2222]],
[],
"friendly"
];
// Weapons Trader
menu_TK_CIV_Takistani06_EP1 = [
[["Sidearm",100011],["Rifles",100012],["Shotguns and Crossbows",100013]],
[],
"friendly"
];
// Ammo Trader
menu_TK_CIV_Takistani04_EP1 = [
[["Sidearm Ammo",100001],["Rifle Ammo",100002],["Shotgun and Crossbow Ammo",100003]],
[],
"friendly"
];
menu_TK_CIV_Woman03_EP1 = [
[["Food and Drinks",1515151],["Backpacks",1525252],["Toolbelt Items",1535353],["Clothes",1545454]],
[
["ItemCopperBar","TrashJackDaniels",1,1,"buy","Empty Wiskey Bottle","Copper Bar",101]
],
"friendly"
];
menu_TK_CIV_Woman02_EP1 = [
[["Medical Supplies",103131],["Chem-lites/Flares",103232],["Smoke Grenades",103333]],
[["FoodBioMeat","ItemZombieParts",1,1,"buy","Zombie Parts","Bio Meat",101]],
"friendly"
];
// START Camp #3
// LOW end Auto Traders
menu_RU_Profiteer2 = [
[["Cars",100041],["Trucks Unarmed",100042],["SUV",100466],["Buses and Vans",100467],["Bikes and ATV",100043],["Helicopter Unarmed",100044],["Military Unarmed",100045]],
[],
"friendly"
];
menu_RU_Damsel4 = [
[["Food and Drinks",105151],["Backpacks",105252],["Toolbelt Items",105353],["Clothes",105454]],
[
["ItemCopperBar","TrashJackDaniels",1,1,"buy","Empty Wiskey Bottle","Copper Bar",101]
],
"friendly"
];

View File

@@ -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.