mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-19 18:06:32 +03:00
finished moving r3f and mission.sqf dynamic vehicle
This commit is contained in:
@@ -8,14 +8,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@date 20101006
|
||||
*****************************************************************************/
|
||||
|
||||
#include "R3F_Realism_Configuration.cfg"
|
||||
#include "R3F_Realism_Configuration.sqf"
|
||||
|
||||
#ifdef R3F_REALISM_USE_WEIGHT
|
||||
_void = [] execVM "R3F_realism\R3F_Weight\R3F_DoWeight.sqf";
|
||||
_void = [] execVM "\z\addons\dayz_code\external\R3F_Realism\R3F_Weight\R3F_DoWeight.sqf";
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef R3F_REALISM_USE_TIRED
|
||||
_void = [] execVM "R3F_realism\R3F_Tired\R3F_Tired_Init.sqf";
|
||||
_void = [] execVM "\z\addons\dayz_code\external\R3F_Realism\R3F_Tired\R3F_Tired_Init.sqf";
|
||||
#endif
|
||||
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
/****************************************************************************
|
||||
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.
|
@@ -8,7 +8,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@date 20101011
|
||||
*****************************************************************************/
|
||||
|
||||
#include "R3F_TIRED_Configuration.cfg"
|
||||
#include "R3F_TIRED_Configuration.sqf"
|
||||
|
||||
private ["_level", "_n", "_s"];
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@date 20101006
|
||||
*****************************************************************************/
|
||||
|
||||
#include "R3F_TIRED_Configuration.cfg"
|
||||
#include "R3F_TIRED_Configuration.sqf"
|
||||
|
||||
FNC_PrintToRPT = {
|
||||
diag_log text _this;
|
||||
|
||||
@@ -8,9 +8,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@date 20101006
|
||||
*****************************************************************************/
|
||||
|
||||
#include "R3F_TIRED_Configuration.cfg"
|
||||
#include "R3F_TIRED_Configuration.sqf"
|
||||
|
||||
call compile preprocessFile "R3F_realism\R3F_Tired\R3F_Tired_Fnct.sqf";
|
||||
call compile preprocessFile "\z\addons\dayz_code\external\R3F_Realism\R3F_Tired\R3F_Tired_Fnct.sqf";
|
||||
|
||||
R3F_Weight = 0;
|
||||
|
||||
@@ -22,4 +22,4 @@ 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";
|
||||
_void = [] execVM "\z\addons\dayz_code\external\R3F_Realism\R3F_Tired\R3F_DoTired.sqf";
|
||||
@@ -1,3 +0,0 @@
|
||||
|
||||
R3F_VERSION_TIRED, "1.02", "1.02"
|
||||
|
||||
|
@@ -8,9 +8,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@date 20101006
|
||||
*****************************************************************************/
|
||||
|
||||
#include "R3F_WEIGHT_Configuration.cfg"
|
||||
#include "R3F_WEIGHT_Configuration.sqf"
|
||||
|
||||
call compile preprocessFile "R3F_Realism\R3F_Weight\R3F_Weight_Fnct.sqf";
|
||||
call compile preprocessFile "\z\addons\dayz_code\external\R3F_Realism\R3F_Weight\R3F_Weight_Fnct.sqf";
|
||||
|
||||
private ["_n","_gearbox_visible","_control","_display","_initial_text"];
|
||||
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
/****************************************************************************
|
||||
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"
|
||||
|
@@ -7,7 +7,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@version 1.02
|
||||
@date 20101018
|
||||
*****************************************************************************/
|
||||
#include "R3F_WEIGHT_Configuration.cfg"
|
||||
#include "R3F_WEIGHT_Configuration.sqf"
|
||||
R3F_WEIGHT_FNCT_MakeSingleArray = {
|
||||
private ["_arr_i","_arr_n", "_arr", "_n", "_nb", "_x"];
|
||||
_arr_i = (_this select 0) select 0;
|
||||
|
||||
@@ -8,6 +8,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
@date 20101018
|
||||
*****************************************************************************/
|
||||
|
||||
call compile preprocessFile "R3F_Realism\R3F_Weight\R3F_Weight_Fnct.sqf";
|
||||
call compile preprocessFile "\z\addons\dayz_code\external\R3F_Realism\R3F_Weight\R3F_Weight_Fnct.sqf";
|
||||
|
||||
_void = [] execVM "R3F_Realism\R3F_Weight\R3F_DoWeight.sqf";
|
||||
_void = [] execVM "\z\addons\dayz_code\external\R3F_Realism\R3F_Weight\R3F_DoWeight.sqf";
|
||||
Reference in New Issue
Block a user