Français Solved Erreur lors de la sauvegarde des informations du joueur

  • Auteur de la discussion Auteur de la discussion coopquebecteam
  • Date de début Date de début
12/2/24
31
4
1
300
je perd tout ce qui est vêtement sac a dos et en gros tout le gear,
Code:
Error in expression <le")],false]];
} forEach (configClasses (missionConfigFile >> "Licenses") select>
  Error position: <(missionConfigFile >> "Licenses") select>
  Error Missing )
File mpmissions\Altis_Life.Altis\core\session\fn_updateRequest.sqf..., line 34
Error in expression <le")],false]];
} forEach (configClasses (missionConfigFile >> "Licenses") select>
  Error position: <(missionConfigFile >> "Licenses") select>
  Error Missing )
File mpmissions\Altis_Life.Altis\core\session\fn_updateRequest.sqf..., line 34

ceci est mon updateRequest :
Code:
#include "..\..\script_macros.hpp"

/*
    File: fn_updateRequest.sqf
    Author: Tonic

    Description:
    Passes ALL player information to the server to save player data to the database.
*/

private ["_packet", "_array", "_flag", "_alive", "_position"];
_packet = [
    getPlayerUID player,
    profileName,
    playerSide,
    CASH, // Assuming CASH is a predefined variable
    BANK  // Assuming BANK is a predefined variable
];

_array = [];

_alive = alive player;
_position = getPosATL player;

_flag = switch (playerSide) do {
    case west: {"cop"};
    case civilian: {"civ"};
    case independent: {"med"};
};

{
    _varName = LICENSE_VARNAME(configName _x, _flag);
    _array pushBack [_varName, LICENSE_VALUE(configName _x, _flag)];
} forEach (configClasses (missionConfigFile >> "Licenses") select {getText(_x >> 'side') isEqualTo _flag});

_packet pushBack _array;

[] call life_fnc_saveGear;
_packet pushBack life_gear;

_array = [];
_array pushBack life_hunger;
_array pushBack life_thirst;
_array pushBack (damage player);
_packet pushBack _array;

switch (playerSide) do {
    case civilian: {
        _packet pushBack life_is_arrested;
        _packet pushBack _alive;
        _packet pushBack _position;
    };
};

if (life_HC_isActive) then {
    _packet remoteExecCall ["HC_fnc_updateRequest", HC_Life];
} else {
    _packet remoteExecCall ["DB_fnc_updateRequest", RSERV];
};
 
Dernière édition par un modérateur:
[CODE title="jail_time.hpp"]class jail_time
{
idd = 26500;
name = "jail_time";
movingEnabled = false;
enableSimulation = true;
class controlsBackground {
class Life_RscTitleBackground:Life_RscText {
colorBackground[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.3843])", "(profilenamespace getvariable ['GUI_BCG_RGB_G',0.7019])", "(profilenamespace getvariable ['GUI_BCG_RGB_B',0.8862])", "(profilenamespace getvariable ['GUI_BCG_RGB_A',0.7])"};
idc = -1;
x = 0.3;
y = 0.2;
w = 0.47;
h = (1 / 25);
};
class MainBackground:Life_RscText {
colorBackground[] = {0, 0, 0, 0.7};
idc = -1;
x = 0.3;
y = 0.2 + (11 / 250);
w = 0.47;
h = 0.3 - (22 / 250);
};
};
class controls
{
class Title : Life_RscTitle {
colorBackground[] = {0, 0, 0, 0};
idc = 2651;
text = "Mis en prison";
x = 0.3;
y = 0.2;
w = 0.6;
h = (1 / 25);
};
class InfoMsg : Life_RscText
{
idc = 2601;
text = "Temps en minutes:";
x = 0.3;
y = 0.163 + (11 / 250);
w = 0.45;
h = 0.12;
};
class textEdit : Life_RscEdit {
idc = 1400;
text = "15";
sizeEx = 0.030;
x = 0.40; y = 0.30;
w = 0.25; h = 0.03;
};
class payTicket: Life_RscButtonMenu {
idc = 2402;
text = "Ok";
colorBackground[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.3843])", "(profilenamespace getvariable ['GUI_BCG_RGB_G',0.7019])", "(profilenamespace getvariable ['GUI_BCG_RGB_B',0.8862])", 0.5};
onButtonClick="[] spawn life_fnc_arrestDialog_Arrest;";
x = 0.45;
y = 0.35;
w = (6.25 / 40);
h = (1 / 25);
};
class CloseButtonKey : Life_RscButtonMenu {
idc = 2400;
text = "$STR_Global_Close";
onButtonClick = "closeDialog 0;";
x = 0.45;
y = 0.40;
w = (6.25 / 40);
h = (1 / 25);
};
};
};[/CODE]
[CODE title="fn_showArrestDialog.sqf"]#include "..\..\script_macros.hpp"
/*
Shows cop arrest dialog
*/

if(playerSide != west) exitWith {};
createDialog "jail_time";[/CODE]
[CODE title="fn_copInteractionMenu.sqf"]#include "..\..\script_macros.hpp"
/*
File: fn_copInteractionMenu.sqf
Author: Bryan "Tonic" Boardwine

Description:
Replaces the mass addactions for various cop actions towards another player.
*/
#define Btn1 37450
#define Btn2 37451
#define Btn3 37452
#define Btn4 37453
#define Btn5 37454
#define Btn6 37455
#define Btn7 37456
#define Btn8 37457
#define Title 37401

private ["_display","_curTarget","_seizeRank","_Btn1","_Btn2","_Btn3","_Btn4","_Btn5","_Btn6","_Btn7","_Btn8"];

disableSerialization;
_curTarget = param [0,objNull,[objNull]];
_seizeRank = LIFE_SETTINGS(getNumber,"seize_minimum_rank");

if (player getVariable ["Escorting", false]) then {
if (isNull _curTarget) exitWith {closeDialog 0;}; //Bad target
if (!isPlayer _curTarget && side _curTarget isEqualTo civilian) exitWith {closeDialog 0;}; //Bad side check?
if (player distance _curTarget > 4 ) exitWith {closeDialog 0;}; // Prevents menu accessing from far distances.
};

if (!dialog) then {
createDialog "pInteraction_Menu";
};

_display = findDisplay 37400;
_Btn1 = _display displayCtrl Btn1;
_Btn2 = _display displayCtrl Btn2;
_Btn3 = _display displayCtrl Btn3;
_Btn4 = _display displayCtrl Btn4;
_Btn5 = _display displayCtrl Btn5;
_Btn6 = _display displayCtrl Btn6;
_Btn7 = _display displayCtrl Btn7;
_Btn8 = _display displayCtrl Btn8;
life_pInact_curTarget = _curTarget;

if (player getVariable ["isEscorting",false]) then {
{ _x ctrlShow false; } forEach [_Btn1,_Btn2,_Btn3,_Btn5,_Btn6,_Btn7,_Btn8];
};

//Set Unrestrain Button
_Btn1 ctrlSetText localize "STR_pInAct_Unrestrain";
_Btn1 buttonSetAction "[life_pInact_curTarget] call life_fnc_unrestrain; closeDialog 0;";

//Set Check Licenses Button
_Btn2 ctrlSetText localize "STR_pInAct_checkLicenses";
_Btn2 buttonSetAction "[player] remoteExecCall [""life_fnc_licenseCheck"",life_pInact_curTarget]; closeDialog 0;";

//Set Search Button
_Btn3 ctrlSetText localize "STR_pInAct_SearchPlayer";
_Btn3 buttonSetAction "[life_pInact_curTarget] spawn life_fnc_searchAction; closeDialog 0;";

//Set Escort Button
if (player getVariable ["isEscorting",false]) then {
_Btn4 ctrlSetText localize "STR_pInAct_StopEscort";
_Btn4 buttonSetAction "[] call life_fnc_stopEscorting; closeDialog 0;";
} else {
_Btn4 ctrlSetText localize "STR_pInAct_Escort";
_Btn4 buttonSetAction "[life_pInact_curTarget] call life_fnc_escortAction; closeDialog 0;";
};

//Set Ticket Button
_Btn5 ctrlSetText localize "STR_pInAct_TicketBtn";
_Btn5 buttonSetAction "[life_pInact_curTarget] call life_fnc_ticketAction;";

_Btn6 ctrlSetText localize "STR_pInAct_Arrest";
_Btn6 buttonSetAction "closeDialog 0; [] call life_fnc_showArrestDialog;";
_Btn6 ctrlEnable false;

_Btn7 ctrlSetText localize "STR_pInAct_PutInCar";
_Btn7 buttonSetAction "[life_pInact_curTarget] call life_fnc_putInCar; closeDialog 0;";

//SeizeWeapons Button
_Btn8 ctrlSetText localize "STR_pInAct_Seize";
_Btn8 buttonSetAction "[life_pInact_curTarget] spawn life_fnc_seizePlayerAction; closeDialog 0;";

if (FETCH_CONST(life_coplevel) < _seizeRank) then {_Btn8 ctrlEnable false;};

{
if ((player distance (getMarkerPos _x) <30)) exitWith { _Btn6 ctrlEnable true;};
} forEach LIFE_SETTINGS(getArray,"sendtoJail_locations");

// Revoke Licenses
_Btn9 ctrlSetText localize "STR_pInAct_RevokeLicense";
_Btn9 buttonSetAction "[life_pInact_curTarget] call life_fnc_revokeLicense;";[/CODE]
[CODE title="masterhandler.hpp"]/*
Master UI Resource File
*/
#include "common.hpp"
#include "shop_items.hpp"
#include "player_inv.hpp"
#include "gang.hpp"
#include "key_chain.hpp"
#include "impound.hpp"
#include "bank.hpp"
#include "veh_shop.hpp"
#include "shops.hpp"
#include "hud_stats.hpp"
#include "admin_menu.hpp"
#include "cell_phone.hpp"
#include "wanted_list.hpp"
#include "ticket.hpp"
#include "clothing.hpp"
#include "trunk.hpp"
#include "spawnSelection.hpp"
#include "chop_shop.hpp"
#include "pInteraction.hpp"
#include "deathScreen.hpp"
#include "vehicleShop.hpp"
#include "vehicleShop3D.hpp"
#include "settings.hpp"
#include "federalReserve.hpp"
#include "compensate.hpp"
#include "FuelStat.hpp"
#include "newsStation.hpp"
#include "revoke_license.hpp"
#include "license_shop.hpp"
#include "jail_time.hpp"[/CODE]
[CODE title="fn_arrestDialog_Arrest.sqf"]#include "..\..\script_macros.hpp"
/*
Player clicked arrest/ok
*/

private ["_time"];
if(playerSide != west) exitWith {};
if(isNil "life_pInact_curTarget") exitWith {};
//Get minutes
_time = ctrlText 1400;
if(! ([_time] call TON_fnc_isnumber)) exitWith {
hint localize "STR_ATM_notnumeric";
};
_time = parseNumber _time; //requested number
_time = round _time;
if(_time < 5 || _time > 720) exitWith { hint "Le temps doit être compris entre 5 et 720 minutes !"; };
closeDialog 0;
[life_pInact_curTarget, _time] call life_fnc_arrestAction;[/CODE]
[CODE title="fn_jail.sqf"]#include "..\..\script_macros.hpp"
/*
File: fn_jail.sqf
Author: Bryan "Tonic" Boardwine

Description:
Starts the initial process of jailing.
*/
params [
["_unit",objNull,[objNull]],
["_bad",false,[false]],
["_time",15,[0]]
];

if (isNull _unit) exitWith {}; //Dafuq?
if !(_unit isEqualTo player) exitWith {}; //Dafuq?
if (life_is_arrested) exitWith {}; //Dafuq i'm already arrested
if !((_unit getVariable ["JailTime",0]) isEqualTo 0) then {_time = (_unit getVariable ["JailTime",0])};
private _illegalItems = LIFE_SETTINGS(getArray,"jail_seize_vItems");

player setVariable ["restrained",false,true];
player setVariable ["Escorting",false,true];
player setVariable ["transporting",false,true];

titleText[localize "STR_Jail_Warn","PLAIN"];
player setPos (getMarkerPos "jail_marker");

if (_bad) then {
waitUntil {alive player};
sleep 1;
};

//Check to make sure they goto check
if (player distance (getMarkerPos "jail_marker") > 40) then {
player setPos (getMarkerPos "jail_marker");
};

life_is_arrested = true;

if (LIFE_SETTINGS(getNumber,"jail_seize_inventory") isEqualTo 1) then {
[] spawn life_fnc_seizeClient;
} else {
removeAllWeapons player;
{player removeMagazine _x} forEach (magazines player);
};

if (life_HC_isActive) then {
[player,_bad,_time] remoteExecCall ["HC_fnc_jailSys",HC_Life];
} else {
[player,_bad,_time] remoteExecCall ["life_fnc_jailSys",RSERV];
};

[5] call SOCK_fnc_updatePartial;[/CODE]
[CODE title="fn_jailMe.sqf"]#include "..\..\script_macros.hpp"
/*
File: fn_jailMe.sqf
Author Bryan "Tonic" Boardwine

Description:
Once word is received by the server the rest of the jail execution is completed.
*/
private ["_time","_bail","_esc","_countDown"];

params [
["_ret",[],[[]]],
["_bad",false,[false]],
["_time",15,[0]]
];

_time = time + (_time * 60);

if (count _ret > 0) then { life_bail_amount = (_ret select 2); } else { life_bail_amount = 1500; };
_esc = false;
_bail = false;

if(_time <= 0) then { _time = time + (15 * 60); hintC "Please Report to Admin: JAIL_FALLBACK_15, time is zero!"; };

while {true} do {
if((round(_time - time)) > 0) then {
_countDown = if(round (_time - time) > 60) then {format["%1 Minuten",round(round(_time - time) / 60)]} else {format["%1 Sekunden",round(_time - time)]};
hintSilent format["Verbleibende Zeit:\n %1\n",_countDown];
};
_remain = (round(_time - time));
if ((_remain % 60) isEqualTo 0) then {
player setVariable ["JailTime", (round(_remain / 60)) ];
[5] call SOCK_fnc_updatePartial;
};

player forceWalk true;

if (player distance (getMarkerPos "jail_marker") > 60) exitWith {
_esc = true;
};

if ((round(_time - time)) < 1) exitWith {hint ""};
if (!alive player && ((round(_time - time)) > 0)) exitWith {};
sleep 0.1;
};

switch (true) do {
case (_bail): {
life_is_arrested = false;
life_bail_paid = false;

hint localize "STR_Jail_Paid";
serv_wanted_remove = [player];
player setPos (getMarkerPos "jail_release");
player setVariable ["JailTime",0];

if (life_HC_isActive) then {
[getPlayerUID player] remoteExecCall ["HC_fnc_wantedRemove",HC_Life];
} else {
[getPlayerUID player] remoteExecCall ["life_fnc_wantedRemove",RSERV];
};

[5] call SOCK_fnc_updatePartial;
};

case (_esc): {
life_is_arrested = false;
hint localize "STR_Jail_EscapeSelf";

[0,"STR_Jail_EscapeNOTF",true,[profileName]] remoteExecCall ["life_fnc_broadcast",west];
player setVariable ["JailTime",0];
if (life_HC_isActive) then {
[getPlayerUID player,profileName,"901"] remoteExecCall ["HC_fnc_wantedAdd",HC_Life];
} else {
[getPlayerUID player,profileName,"901"] remoteExecCall ["life_fnc_wantedAdd",RSERV];
};

[5] call SOCK_fnc_updatePartial;
};

case (alive player && !_esc && !_bail): {
life_is_arrested = false;
hint localize "STR_Jail_Released";

if (life_HC_isActive) then {
[getPlayerUID player] remoteExecCall ["HC_fnc_wantedRemove",HC_Life];
} else {
[getPlayerUID player] remoteExecCall ["life_fnc_wantedRemove",RSERV];
};

player setPos (getMarkerPos "jail_release");
[5] call SOCK_fnc_updatePartial;
};
};

player forceWalk false; // Enable running & jumping[/CODE]
[CODE title="fn_arrestAction.sqf"]#include "..\..\script_macros.hpp"
/*
File: fn_arrestAction.sqf
Author:

Description:
Arrests the targeted person.
*/
private ["_unit","_id","_time"];
_unit = param [0,objNull,[objNull]];
_time = param [1,30];
if (isNull _unit) exitWith {}; //Not valid
if (isNil "_unit") exitWith {}; //Not Valid
if (!(_unit isKindOf "Man")) exitWith {}; //Not a unit
if (!isPlayer _unit) exitWith {}; //Not a human
if (!(_unit getVariable "restrained")) exitWith {}; //He's not restrained.
if (!((side _unit) in [civilian,independent,east])) exitWith {}; //Not a civ
if (isNull _unit) exitWith {}; //Not valid

if (life_HC_isActive) then {
if(_time < 1) exitwith {};
[getPlayerUID _unit,_unit,player,false] remoteExecCall ["HC_fnc_wantedBounty",HC_Life];
} else {
if(_time < 1) exitwith {};
[getPlayerUID _unit,_unit,player,false] remoteExecCall ["life_fnc_wantedBounty",RSERV];
};

if (isNull _unit) exitWith {}; //Not valid
detach _unit;
[_unit,false,_time] remoteExecCall ["life_fnc_jail",_unit];
[0,"STR_NOTF_Arrested_1",true, [_unit getVariable ["realname",name _unit], profileName]] remoteExecCall ["life_fnc_broadcast",west];

if (LIFE_SETTINGS(getNumber,"player_advancedLog") isEqualTo 1) then {
if (LIFE_SETTINGS(getNumber,"battlEye_friendlyLogging") isEqualTo 1) then {
advanced_log = format [localize "STR_DL_AL_Arrested_BEF",_unit getVariable ["realname",name _unit]];
} else {
advanced_log = format [localize "STR_DL_AL_Arrested",profileName,(getPlayerUID player),_unit getVariable ["realname",name _unit]];
};
publicVariableServer "advanced_log";
};[/CODE]
[CODE title="function.hpp"]class Socket_Reciever {
tag = "SOCK";
class SQL_Socket {
file = "core\session";
class dataQuery {};
class insertPlayerInfo {};
class requestReceived {};
class syncData {};
class updatePartial {};
class updateRequest {};
};
};

class SpyGlass {
tag = "SPY";
class Functions {
file = "SpyGlass";
class cookieJar{};
class notifyAdmins{};
class observe{};
};
};

class Life_Client_Core {
tag = "life";

class Master_Directory {
file = "core";
class initCiv {};
class initCop {};
class initMedic {};
class setupActions {};
class setupEVH {};
class survival {};
class welcomeNotification {};
};

class Actions {
file = "core\actions";
class checkAssurance {};
class robSystem {};
class addMeInContact {};
class arrestAction {};
class buyLicense {};
class captureHideout {};
class catchFish {};
class dpFinish {};
class dropFishingNet {};
class escortAction {};
class gather {};
class getDPMission {};
class gutAnimal {};
class healHospital {};
class impoundAction {};
class mine {};
class newsBroadcast {};
class packupSpikes {};
class pickupItem {};
class pickupMoney {};
class postBail {};
class processAction {};
class pulloutAction {};
class putInCar {};
class removeContainer {};
class repairTruck {};
class restrainAction {};
class robAction {};
class searchAction {};
class searchVehAction {};
class seizePlayerAction {};
class serviceChopper {};
class stopEscorting {};
class storeVehicle {};
class surrender {};
class ticketAction {};
class unrestrain {};
};

class Admin {
file = "core\admin";
class adminCompensate {};
class adminDebugCon {};
class adminFreeze {};
class admingetID {};
class adminGodMode {};
class adminid {};
class admininfo {};
class adminMarkers {};
class adminMenu {};
class adminQuery {};
class adminSpectate {};
class adminTeleport {};
class adminTpHere {};
};

class Civilian {
file = "core\civilian";
class civMarkers {};
class setBackpackTexture {};
class demoChargeTimer {};
class freezePlayer {};
class jail {};
class jailMe {};
class knockedOut {};
class knockoutAction {};
class removeLicenses {};
class robPerson {};
class robReceive {};
class tazed {};
};

class Config {
file = "core\config";
class houseConfig {};
class itemWeight {};
class vehicleAnimate {};
class vehicleWeightCfg {};
};

class Cop {
file = "core\cop";
class bountyReceive {};
class containerInvSearch {};
class copInteractionMenu {};
class copInteractionMenu2 {};
class copLights {};
class copMarkers {};
class copSearch {};
class copSiren {};
class doorAnimate {};
class fedCamDisplay {};
class licenseCheck {};
class licensesRead {};
class questionDealer {};
class radar {};
class repairDoor {};
class restrain {};
class searchClient {};
class seizeClient {};
class sirenLights {};
class spikeStripEffect {};
class ticketGive {};
class ticketPaid {};
class ticketPay {};
class ticketPrompt {};
class vehInvSearch {};
class wantedGrab {};
class showArrestDialog {};
class arrestDialog_Arrest {};
};

class Dialog_Controls {
file = "dialog\function";
class bankDeposit {};
class bankTransfer {};
class bankWithdraw {};
class bankDepositAll {};
class displayHandler {};
class gangBankResponse {};
class garageLBChange {};
class impoundMenu {};
class progressBar {};
class safeFix {};
class safeInventory {};
class safeOpen {};
class safeTake {};
class sellGarage {};
class setMapPosition {};
class spawnConfirm {};
class spawnMenu {};
class spawnPointCfg {};
class spawnPointSelected {};
class unimpound {};
class useGangBank {};
class vehicleGarage {};
class wireTransfer {};
};

class Functions {
file = "core\functions";
class deleteVehicleAction {};
class AAN {};
class accType {};
class actionKeyHandler {};
class animSync {};
class calWeightDiff {};
class checkMap {};
class clearVehicleAmmo {};
class dropItems {};
class escInterupt {};
class fetchCfgDetails {};
class fetchDeadGear {};
class fetchVehInfo {};
class isDamaged {};
class giveDiff {};
class handleDamage {};
class handleInv {};
class handleItem {};
class hideObj {};
class hudSetup {};
class hudUpdate {};
class inventoryClosed {};
class inventoryOpened {};
class isUIDActive {};
class keyHandler {};
class loadDeadGear {};
class loadGear {};
class nearATM {};
class nearestDoor {};
class nearUnits {};
class numberText {};
class onFired {};
class onTakeItem {};
class playerSkins {};
class playerTags {};
class postNewsBroadcast {};
class pullOutVeh {};
class pushObject {};
class receiveItem {};
class receiveMoney {};
class revealObjects {};
class saveGear {};
class simDisable {};
class startLoadout {};
class stripDownPlayer {};
class teleport {};
class whereAmI {};
class moveIn {};
};

class Gangs {
file = "core\gangs";
class createGang {};
class gangCreated {};
class gangDisband {};
class gangDisbanded {};
class gangInvite {};
class gangInvitePlayer {};
class gangKick {};
class gangLeave {};
class gangMenu {};
class gangNewLeader {};
class gangUpgrade {};
class initGang {};
};

class Housing {
file = "core\housing";
class buyHouse {};
class buyHouseGarage {};
class containerMenu {};
class copBreakDoor {};
class copHouseOwner {};
class garageRefund {};
class getBuildingPositions {};
class houseMenu {};
class initHouses {};
class lightHouse {};
class lightHouseAction {};
class lockHouse {};
class lockupHouse {};
class placeContainer {};
class PlayerInBuilding {};
class raidHouse {};
class sellHouse {};
class sellHouseGarage {};
};

class Items {
file = "core\items";
class blastingCharge {};
class boltcutter {};
class defuseKit {};
class flashbang {};
class jerrycanRefuel {};
class jerryRefuel {};
class lockpick {};
class placestorage {};
class spikeStrip {};
class storageBox {};
};

class Medical_System {
file = "core\medical";
class deathScreen {};
class medicLights {};
class medicMarkers {};
class medicRequest {};
class medicSiren {};
class medicSirenLights {};
class onPlayerKilled {};
class onPlayerRespawn {};
class requestMedic {};
class respawned {};
class revived {};
class revivePlayer {};
};

class Network {
file = "core\functions\network";
class broadcast {};
class corpse {};
class jumpFnc {};
class say3D {};
class setFuel {};
class soundDevice {};
};

class Player_Menu {
file = "core\pmenu";
class cellphone {};
class giveItem {};
class giveMoney {};
class keyDrop {};
class keyGive {};
class keyMenu {};
class p_openMenu {};
class p_updateMenu {};
class pardon {};
class removeItem {};
class s_onChar {};
class s_onCheckedChange {};
class s_onSliderChange {};
class settingsMenu {};
class updateViewDistance {};
class useItem {};
class wantedAddP {};
class wantedInfo {};
class wantedList {};
class wantedMenu {};
class revokeLicense {};
};

class Shops {
file = "core\shops";
class 3dPreviewDisplay {};
class 3dPreviewExit {};
class 3dPreviewInit {};
class atmMenu {};
class buyClothes {};
class changeClothes {};
class chopShopMenu {};
class chopShopSelection {};
class chopShopSell {};
class chopShopSold {};
class clothingFilter {};
class clothingMenu {};
class fuelLBchange {};
class fuelStatOpen {};
class levelCheck {};
class vehicleShopBuy {};
class vehicleShopLBChange {};
class vehicleShopMenu {};
class virt_buy {};
class virt_menu {};
class virt_sell {};
class virt_update {};
class weaponShopAccs {};
class weaponShopBuySell {};
class weaponShopFilter {};
class weaponShopMags {};
class weaponShopMenu {};
class weaponShopSelection {};
class licshop_update {};
class licenses {};
};

class Vehicle {
file = "core\vehicle";
class addVehicle2Chain {};
class colorVehicle {};
class deviceMine {};
class FuelRefuelcar {};
class fuelStore {};
class fuelSupply {};
class lockVehicle {};
class openInventory {};
class vehiclecolor3DRefresh {};
class vehicleOwners {};
class vehicleWeight {};
class vehInventory {};
class vehStoreItem {};
class vehTakeItem {};
class vInteractionMenu {};
};
};
[/CODE]
[CODE title="fn_updatePartial.sqf mission"]#include "..\..\script_macros.hpp"
/*
File: fn_updatePartial.sqf
Author: Bryan "Tonic" Boardwine

Description:
Sends specific information to the server to update on the player,
meant to keep the network traffic down with large sums of data flowing
through remoteExec
*/
private ["_mode","_packet","_array","_flag"];
_mode = param [0,0,[0]];
_packet = [getPlayerUID player,playerSide,nil,_mode];
_array = [];
_flag = switch (playerSide) do {case west: {"cop"}; case civilian: {"civ"}; case independent: {"med"};};

switch (_mode) do {
case 0: {
_packet set[2,CASH];
};

case 1: {
_packet set[2,BANK];
};

case 2: {
{
_varName = LICENSE_VARNAME(configName _x,_flag);
_array pushBack [_varName,LICENSE_VALUE(configName _x,_flag)];
} forEach (format ["getText(_x >> 'side') isEqualTo '%1'",_flag] configClasses (missionConfigFile >> "Licenses"));

_packet set[2,_array];
};

case 3: {
[] call life_fnc_saveGear;
_packet set[2,life_gear];
};

case 4: {
_packet set[2,life_is_alive];
_packet set[4,getPosATL player];
};

case 5: {
_packet set[2,life_is_arrested];
_packet set[4,(player getVariable ["JailTime",0])];
};

case 6: {
_packet set[2,CASH];
_packet set[4,BANK];
};

case 7: {
// Tonic is using for keychain..?
};
};

if (life_HC_isActive) then {
_packet remoteExecCall ["HC_fnc_updatePartial",HC_Life];
} else {
_packet remoteExecCall ["DB_fnc_updatePartial",RSERV];
};
[/CODE]
[CODE title="fn_requestReceived.sqf mission"]#include "..\..\script_macros.hpp"
/*
File: fn_requestReceived.sqf
Author: Bryan "Tonic" Boardwine

Description:
Called by the server saying that we have a response so let's
sort through the information, validate it and if all valid
set the client up.
*/
private _count = count _this;
life_session_tries = life_session_tries + 1;
if (life_session_completed) exitWith {}; //Why did this get executed when the client already initialized? Fucking arma...
if (life_session_tries > 3) exitWith {cutText[localize "STR_Session_Error","BLACK FADED"]; 0 cutFadeOut 999999999;};

0 cutText [localize "STR_Session_Received","BLACK FADED"];
0 cutFadeOut 9999999;

//Error handling and junk..
if (isNil "_this") exitWith {[] call SOCK_fnc_insertPlayerInfo;};
if (_this isEqualType "") exitWith {[] call SOCK_fnc_insertPlayerInfo;};
if (count _this isEqualTo 0) exitWith {[] call SOCK_fnc_insertPlayerInfo;};
if ((_this select 0) isEqualTo "Error") exitWith {[] call SOCK_fnc_insertPlayerInfo;};
if (!(getPlayerUID player isEqualTo (_this select 0))) exitWith {[] call SOCK_fnc_dataQuery;};

//Lets make sure some vars are not set before hand.. If they are get rid of them, hopefully the engine purges past variables but meh who cares.
if (!isServer && (!isNil "life_adminlevel" || !isNil "life_coplevel" || !isNil "life_donorlevel")) exitWith {
[profileName,getPlayerUID player,"VariablesAlreadySet"] remoteExecCall ["SPY_fnc_cookieJar",RSERV];
[profileName,format ["Variables set before client initialization...\nlife_adminlevel: %1\nlife_coplevel: %2\nlife_donorlevel: %3",life_adminlevel,life_coplevel,life_donorlevel]] remoteExecCall ["SPY_fnc_notifyAdmins",RCLIENT];
sleep 0.9;
failMission "SpyGlass";
};

//Parse basic player information.
CASH = parseNumber (_this select 2);
BANK = parseNumber (_this select 3);
CONST(life_adminlevel,(_this select 4));
if (LIFE_SETTINGS(getNumber,"donor_level") isEqualTo 1) then {
CONST(life_donorlevel,(_this select 5));
} else {
CONST(life_donorlevel,0);
};

//Loop through licenses
if (count (_this select 6) > 0) then {
{missionNamespace setVariable [(_x select 0),(_x select 1)];} forEach (_this select 6);
};

//Parse side specific information.
switch (playerSide) do {
case west: {
CONST(life_coplevel,(_this select 7));
CONST(life_medicLevel,0);
life_blacklisted = _this select 9;
if (LIFE_SETTINGS(getNumber,"save_playerStats") isEqualTo 1) then {
life_hunger = ((_this select 10) select 0);
life_thirst = ((_this select 10) select 1);
player setDamage ((_this select 10) select 2);
};
};

case civilian: {
life_is_arrested = _this select 7;
CONST(life_coplevel, 0);
CONST(life_medicLevel, 0);
life_houses = _this select (_count - 3);
player setVariable ["JailTime",(_this select 13),true];
if (LIFE_SETTINGS(getNumber,"save_playerStats") isEqualTo 1) then {
life_hunger = ((_this select 9) select 0);
life_thirst = ((_this select 9) select 1);
player setDamage ((_this select 9) select 2);
};

//Position
if (LIFE_SETTINGS(getNumber,"save_civilian_position") isEqualTo 1) then {
life_is_alive = _this select 10;
life_civ_position = _this select 11;
if (life_is_alive) then {
if !(count life_civ_position isEqualTo 3) then {diag_log format ["[requestReceived] Bad position received. Data: %1",life_civ_position];life_is_alive =false;};
if (life_civ_position distance (getMarkerPos "respawn_civilian") < 300) then {life_is_alive = false;};
};
};

{
_house = nearestObject [(call compile format ["%1",(_x select 0)]), "House"];
life_vehicles pushBack _house;
} forEach life_houses;

life_gangData = _this select (_count - 2);
if !(count life_gangData isEqualTo 0) then {
[] spawn life_fnc_initGang;
};
[] spawn life_fnc_initHouses;
};

case independent: {
CONST(life_medicLevel,(_this select 7));
CONST(life_coplevel,0);
if (LIFE_SETTINGS(getNumber,"save_playerStats") isEqualTo 1) then {
life_hunger = ((_this select 9) select 0);
life_thirst = ((_this select 9) select 1);
player setDamage ((_this select 9) select 2);
};
};
};

life_gear = _this select 8;
call life_fnc_loadGear;

if (count (_this select (_count - 1)) > 0) then {
{life_vehicles pushBack _x;} forEach (_this select (_count - 1));
};

life_session_completed = true;
[/CODE]
[CODE title="fn_jailSys.sqf server"]#include "\life_server\script_macros.hpp"
/*
File: fn_jailSys.sqf
Author: Bryan "Tonic" Boardwine

Description:
I forget?
*/

private["_unit","_bad","_id","_ret","_time"];
_unit = [_this,0,objNull,[objNull]] call BIS_fnc_param;
if (isNull _unit) exitWith {};
_bad = [_this,1,false,[false]] call BIS_fnc_param;
_time = [_this,2,15,[0]] call BIS_fnc_param;
if(_bad) then {//Load time from database
_query = format["SELECT jail_time FROM players WHERE pid='%2'", _time, getPlayerUID _unit];
_result = [_query,2] call DB_fnc_asyncCall;
_result = (_result select 0);
_time = _result;
} else {
_query = format["UPDATE players SET jail_time='%1' WHERE pid='%2'", _time, getPlayerUID _unit];
_result = [_query,1] call DB_fnc_asyncCall;
};
_id = owner _unit;
_ret = [_unit] call life_fnc_wantedPerson;
[_ret,_bad,_time] remoteExec ["life_fnc_jailMe",_id];[/CODE]
[CODE title="fn_updatePartial.sqf server"]/*
File: fn_updatePartial.sqf
Author: Bryan "Tonic" Boardwine

Description:
Takes partial data of a player and updates it, this is meant to be
less network intensive towards data flowing through it for updates.
*/
private ["_uid","_side","_value","_value1","_value2","_mode","_query"];
_uid = [_this,0,"",[""]] call BIS_fnc_param;
_side = [_this,1,sideUnknown,[civilian]] call BIS_fnc_param;
_mode = [_this,3,-1,[0]] call BIS_fnc_param;

if (_uid isEqualTo "" || _side isEqualTo sideUnknown) exitWith {}; //Bad.
_query = "";

switch (_mode) do {
case 0: {
_value = [_this,2,0,[0]] call BIS_fnc_param;
_value = [_value] call DB_fnc_numberSafe;
_query = format ["UPDATE players SET cash='%1' WHERE pid='%2'",_value,_uid];
};

case 1: {
_value = [_this,2,0,[0]] call BIS_fnc_param;
_value = [_value] call DB_fnc_numberSafe;
_query = format ["UPDATE players SET bankacc='%1' WHERE pid='%2'",_value,_uid];
};

case 2: {
_value = [_this,2,[],[[]]] call BIS_fnc_param;
//Does something license related but I can't remember I only know it's important?
for "_i" from 0 to count(_value)-1 do {
_bool = [(_value select _i) select 1] call DB_fnc_bool;
_value set[_i,[(_value select _i) select 0,_bool]];
};
_value = [_value] call DB_fnc_mresArray;
switch (_side) do {
case west: {_query = format ["UPDATE players SET cop_licenses='%1' WHERE pid='%2'",_value,_uid];};
case civilian: {_query = format ["UPDATE players SET civ_licenses='%1' WHERE pid='%2'",_value,_uid];};
case independent: {_query = format ["UPDATE players SET med_licenses='%1' WHERE pid='%2'",_value,_uid];};
};
};

case 3: {
_value = [_this,2,[],[[]]] call BIS_fnc_param;
_value = [_value] call DB_fnc_mresArray;
switch (_side) do {
case west: {_query = format ["UPDATE players SET cop_gear='%1' WHERE pid='%2'",_value,_uid];};
case civilian: {_query = format ["UPDATE players SET civ_gear='%1' WHERE pid='%2'",_value,_uid];};
case independent: {_query = format ["UPDATE players SET med_gear='%1' WHERE pid='%2'",_value,_uid];};
};
};

case 4: {
_value = [_this,2,false,[true]] call BIS_fnc_param;
_value = [_value] call DB_fnc_bool;
_value2 = [_this,4,[],[[]]] call BIS_fnc_param;
_value2 = if (count _value2 isEqualTo 3) then {_value2} else {[0,0,0]};
_value2 = [_value2] call DB_fnc_mresArray;
_query = format ["UPDATE players SET civ_alive='%1', civ_position='%2' WHERE pid='%3'",_value,_value2,_uid];
};

case 5: {
_value = [_this,2,false,[true]] call BIS_fnc_param;
_value = [_value] call DB_fnc_bool;
_value2 = [_this,4,0,[0]] call BIS_fnc_param;
_query = format ["UPDATE players SET arrested='%1',jail_time ='%2' WHERE pid='%3'",_value,_value2,_uid];
};

case 6: {
_value1 = [_this,2,0,[0]] call BIS_fnc_param;
_value2 = [_this,4,0,[0]] call BIS_fnc_param;
_value1 = [_value1] call DB_fnc_numberSafe;
_value2 = [_value2] call DB_fnc_numberSafe;
_query = format ["UPDATE players SET cash='%1', bankacc='%2' WHERE pid='%3'",_value1,_value2,_uid];
};

case 7: {
_array = [_this,2,[],[[]]] call BIS_fnc_param;
[_uid,_side,_array,0] call TON_fnc_keyManagement;
};
};

if (_query isEqualTo "") exitWith {};

[_query,1] call DB_fnc_asyncCall;
[/CODE]
[CODE title="fn_queryRequest.sqf server"]#include "\life_server\script_macros.hpp"
/*
File: fn_queryRequest.sqf
Author: Bryan "Tonic" Boardwine

Description:
Handles the incoming request and sends an asynchronous query
request to the database.

Return:
ARRAY - If array has 0 elements it should be handled as an error in client-side files.
STRING - The request had invalid handles or an unknown error and is logged to the RPT.
*/
private ["_uid","_side","_query","_queryResult","_tickTime","_tmp"];
_uid = [_this,0,"",[""]] call BIS_fnc_param;
_side = [_this,1,sideUnknown,[civilian]] call BIS_fnc_param;
_ownerID = [_this,2,objNull,[objNull]] call BIS_fnc_param;

if (isNull _ownerID) exitWith {};

if (LIFE_SETTINGS(getNumber,"player_deathLog") isEqualTo 1) then {
_ownerID addMPEventHandler ["MPKilled", {_this call fn_whoDoneIt}];
};

if (isNull _ownerID) exitWith {};
private _player = _ownerID;
_ownerID = owner _ownerID;

_query = switch (_side) do {
// West - 11 entries returned
case west: {format ["SELECT pid, name, cash, bankacc, adminlevel, donorlevel, cop_licenses, coplevel, cop_gear, blacklist, cop_stats, playtime FROM players WHERE pid='%1'",_uid];};
// Civilian - 12 entries returned
case civilian: {format ["SELECT pid, name, cash, bankacc, adminlevel, donorlevel, civ_licenses, arrested, civ_gear, civ_stats, civ_alive, civ_position, playtime, jail_time FROM players WHERE pid='%1'",_uid];};
// Independent - 10 entries returned
case independent: {format ["SELECT pid, name, cash, bankacc, adminlevel, donorlevel, med_licenses, mediclevel, med_gear, med_stats, playtime FROM players WHERE pid='%1'",_uid];};
};

_tickTime = diag_tickTime;
_queryResult = [_query,2] call DB_fnc_asyncCall;

if (EXTDB_SETTING(getNumber,"DebugMode") isEqualTo 1) then {
diag_log "------------- Client Query Request -------------";
diag_log format ["QUERY: %1",_query];
diag_log format ["Time to complete: %1 (in seconds)",(diag_tickTime - _tickTime)];
diag_log format ["Result: %1",_queryResult];
diag_log "------------------------------------------------";
};

if (_queryResult isEqualType "") exitWith {
[] remoteExecCall ["SOCK_fnc_insertPlayerInfo",_ownerID];
};

if (count _queryResult isEqualTo 0) exitWith {
[] remoteExecCall ["SOCK_fnc_insertPlayerInfo",_ownerID];
};

//Blah conversion thing from a2net->extdb
_tmp = _queryResult select 2;
_queryResult set[2,[_tmp] call DB_fnc_numberSafe];
_tmp = _queryResult select 3;
_queryResult set[3,[_tmp] call DB_fnc_numberSafe];

//Parse licenses (Always index 6)
_new = [(_queryResult select 6)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_queryResult set[6,_new];

//Convert tinyint to boolean
_old = _queryResult select 6;
for "_i" from 0 to (count _old)-1 do {
_data = _old select _i;
_old set[_i,[_data select 0, ([_data select 1,1] call DB_fnc_bool)]];
};

_queryResult set[6,_old];

_new = [(_queryResult select 8)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_queryResult set[8,_new];
//Parse data for specific side.
switch (_side) do {
case west: {
_queryResult set[9,([_queryResult select 9,1] call DB_fnc_bool)];

//Parse Stats
_new = [(_queryResult select 10)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_queryResult set[10,_new];

//Playtime
_new = [(_queryResult select 11)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_index = TON_fnc_playtime_values_request find [_uid, _new];
if (_index != -1) then {
TON_fnc_playtime_values_request set[_index,-1];
TON_fnc_playtime_values_request = TON_fnc_playtime_values_request - [-1];
TON_fnc_playtime_values_request pushBack [_uid, _new];
} else {
TON_fnc_playtime_values_request pushBack [_uid, _new];
};
[_uid,_new select 0] call TON_fnc_setPlayTime;
};

case civilian: {
_queryResult set[7,([_queryResult select 7,1] call DB_fnc_bool)];

//Parse Stats
_new = [(_queryResult select 9)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_queryResult set[9,_new];

//Position
_queryResult set[10,([_queryResult select 10,1] call DB_fnc_bool)];
_new = [(_queryResult select 11)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_queryResult set[11,_new];

//Playtime
_new = [(_queryResult select 12)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_index = TON_fnc_playtime_values_request find [_uid, _new];
if (_index != -1) then {
TON_fnc_playtime_values_request set[_index,-1];
TON_fnc_playtime_values_request = TON_fnc_playtime_values_request - [-1];
TON_fnc_playtime_values_request pushBack [_uid, _new];
} else {
TON_fnc_playtime_values_request pushBack [_uid, _new];
};
[_uid,_new select 2] call TON_fnc_setPlayTime;

// jail_time
_player setVariable ["JailTime",(_queryResult select 13),true];

/* Make sure nothing else is added under here */
_houseData = _uid spawn TON_fnc_fetchPlayerHouses;
waitUntil {scriptDone _houseData};
queryResult pushBack (missionNamespace getVariable [format ["houses%1",_uid],[]]);
_gangData = _uid spawn TON_fnc_queryPlayerGang;
waitUntil{scriptDone _gangData};
queryResult pushBack (missionNamespace getVariable [format ["gang%1",_uid],[]]);

};

case independent: {
//Parse Stats
_new = [(_queryResult select 9)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_queryResult set[9,_new];

//Playtime
_new = [(_queryResult select 10)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_index = TON_fnc_playtime_values_request find [_uid, _new];
if !(_index isEqualTo -1) then {
TON_fnc_playtime_values_request set[_index,-1];
TON_fnc_playtime_values_request = TON_fnc_playtime_values_request - [-1];
TON_fnc_playtime_values_request pushBack [_uid, _new];
} else {
TON_fnc_playtime_values_request pushBack [_uid, _new];
};
[_uid,_new select 1] call TON_fnc_setPlayTime;
};
};

publicVariable "TON_fnc_playtime_values_request";

keyArr = missionNamespace getVariable [format ["%1_KEYS%2",_uid,_side],[]];
_queryResult pushBack _keyArr;

_queryResult remoteExec ["SOCK_fnc_requestReceived",_ownerID];
[/CODE]
[CODE title="config.cpp server"]class DefaultEventhandlers;
class CfgPatches {
class life_server {
units[] = {"C_man_1"};
weapons[] = {};
requiredAddons[] = {"A3_Data_F","A3_Soft_F","A3_Soft_F_Offroad_01","A3_Characters_F"};
fileName = "life_server.pbo";
author = "Tonic";
};
};

class CfgFunctions {
class MySQL_Database {
tag = "DB";
class MySQL
{
file = "\life_server\Functions\MySQL";
class numberSafe {};
class mresArray {};
class queryRequest{};
class asyncCall{};
class insertRequest{};
class updateRequest{};
class mresToArray {};
class insertVehicle {};
class bool {};
class mresString {};
class updatePartial {};
};
};

class Life_System {
tag = "life";
class Wanted_Sys {
file = "\life_server\Functions\WantedSystem";
class wantedFetch {};
class wantedPerson {};
class wantedBounty {};
class wantedRemove {};
class wantedAdd {};
class wantedCrimes {};
class wantedProfUpdate {};
};

class Jail_Sys {
file = "\life_server\Functions\Jail";
class jailSys {};
};

class Client_Code {
file = "\life_server\Functions\Client";
};
};

class TON_System {
tag = "TON";
class Systems {
file = "\life_server\Functions\Systems";
class timeMultiplier{};
class managesc {};
class cleanup {};
class huntingZone {};
class getID {};
class vehicleCreate {};
class spawnVehicle {};
class getVehicles {};
class vehicleStore {};
class vehicleDelete {};
class spikeStrip {};
class transferOwnership {};
class federalUpdate {};
class chopShopSell {};
class clientDisconnect {};
class entityRespawned {};
class cleanupRequest {};
class keyManagement {};
class vehicleUpdate {};
class recupkeyforHC {};
class handleBlastingCharge {};
class terrainSort {};
};

class Housing {
file = "\life_server\Functions\Housing";
class addHouse {};
class addContainer {};
class deleteDBContainer {};
class fetchPlayerHouses {};
class initHouses {};
class sellHouse {};
class sellHouseContainer {};
class updateHouseContainers {};
class updateHouseTrunk {};
class houseCleanup {};
class houseGarage {};
};

class Gangs {
file = "\life_server\Functions\Gangs";
class insertGang {};
class queryPlayerGang {};
class removeGang {};
class updateGang {};
};

class Actions {
file = "\life_server\Functions\Actions";
class pickupAction {};
};

class PlayTime {
file = "\life_server\Functions\PlayTime";
class setPlayTime {};
class getPlayTime {};
};
};
};

class CfgVehicles {
class Car_F;
class CAManBase;
class Civilian;
class Civilian_F : Civilian {
class EventHandlers;
};

class C_man_1 : Civilian_F {
class EventHandlers: EventHandlers {
init = "(_this select 0) execVM ""\life_server\fix_headgear.sqf""";
};
};
};
[/CODE]
 
Je vois vraiment pas l'erreur 😅

Tu peux essayer avec le fichier de base directement ?
bon après avoir tout remit par défaut et installé le jail système the programmer les erreurs ce sont actualisé et je respawn sur l'ile a respawn
[CODE title="rpt"]Steam AppId from steam_appid.txt: 107410
Unsupported language English in stringtable
➥ Context: mpmissions\Altis_Life.Altis\stringtable.xml
Unsupported language English in stringtable
➥ Context: mpmissions\Altis_Life.Altis\stringtable.xml
Mission Altis_Life.Altis: Number of roles (122) is different from 'description.ext::Header::maxPlayer' (126)
Connected to Steam servers
Starting mission:
Mission file: Altis_Life
Mission world: Altis
Mission Directory: mpmissions\Altis_Life.Altis\
Strange convex component202 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView
Strange convex component203 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView
Strange convex component145 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView
Strange convex component149 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView
Strange convex component115 in a3\structures_f\households\house_big01\u_house_big_01_v1_f.p3d:geometryView
Strange convex component117 in a3\structures_f\households\house_big01\u_house_big_01_v1_f.p3d:geometryView
"---------------------------------------------------------------------"
"---------------------------------------------------------------------"
CallExtension loaded: extDB3 (D:\Altis Life Server\@extDB3\extDB3_x64.dll) [extDB3 v1033 Windows]

"extDB3 Loaded"
"---------------------------------------------------------------------"
"---------------------------------------------------------------------"
CallExtension loaded: theprogrammer_core (D:\Altis Life Server\@The_Programmer\theprogrammer_core_x64.dll) [The-Programmer Core]

"----------------------------------------------------------------------------------------------------"
"---------------------------------------- The-Programmer Core ---------------------------------------"
"---------------------------------------- Core Version : 3.6 ----------------------------------------"
"---------------------------------------- DLL Version : 2.2 ---------------------------------------"
"---------------------------- Server Name : [FR] <ALR> Altis Life Revive -https://discord.gg/dugFppcTRN> ----------------------------"
"--------------------------------- World Name : Altis ---------------------------------"
"------------------------ Loading your products from www.the-programmer.com -------------------------"
"----------------------------------------------------------------------------------------------------"
"[The-Programmer] Loading The-Programmer Core v3.6 (latest)"
"[The-Programmer] Loading Billing System v3.2 (latest) - Modified files"
"[The-Programmer] Loading Whitelist Menu v3.0 (latest)"
"[The-Programmer] Loading Advanced GPS v2.4 (latest) - No files information"
"[The-Programmer] Loading Phone Numbers v4.1 (latest) - Modified files"
"[The-Programmer] Loading Key Transfer v5.8 (latest)"
"[The-Programmer] Loading Advanced Phone Upgrade v4.4 (latest)"
"[The-Programmer] Loading Advanced Identity v4.1 (latest)"
"[The-Programmer] Loading Restrain System v3.3 (latest)"
"[The-Programmer] Loading Dispatch System v4.3 (latest)"
"[The-Programmer] Loading Farming System v5.1 (latest) - Modified files"
"[The-Programmer] Loading Road Service System v2.1 (latest)"
"[The-Programmer] Loading Banking System v2.4 (latest)"
"[The-Programmer] Loading Dynamic Market v2.0 (latest) - No files information"
"[The-Programmer] Loading Traffic System v4.0 (latest)"
"[The-Programmer] Loading Rules Protection System v1.0 (latest)"
"[The-Programmer] Loading Advanced Insure v2.7 (latest) - No files information"
"[The-Programmer] Loading Iphone XI v3.5 (latest) - Modified files"
"[The-Programmer] Loading Credit System v2.2 (latest)"
"[The-Programmer] Loading Vehicle Shop v2.5 (latest)"
"[The-Programmer] Loading Jail System v1.2 (latest)"
"[The-Programmer] Loading Offroad Simulator v1.0 (latest)"
"----------------------------------------------------------------------------------------------------"
"--------------------------------------- The-Programmer Core ----------------------------------------"
"---------------------------------- SUCCESS ! 21 product(s) loaded ----------------------------------"
"--------------------------------------- End loading products ---------------------------------------"
"----------------------------------------------------------------------------------------------------"
[CBA] (xeh) INFO: [18402,32.852,0] PreInit started. v3.16.1.231025
[CBA] (settings) INFO: Reading settings from settings file.
[CBA] (settings) INFO: Finished reading settings from settings file.
[CBA] (xeh) WARNING: One or more children of class CAManBase do not support Extended Event Handlers. Fall back to loop.
[ACE] (common) INFO: Parsed Settings Configs [0.0 ms]
[CBA] (xeh) INFO: [18402,33.042,0] PreInit finished.
Error: Wheel reference not initialized
Error: Wheel reference not initialized
Error: Wheel reference not initialized
Error: Wheel reference not initialized
Strange convex component100 in enrico_batiments_4\garage_concess\garage_concess.p3d:geometryFire
Warning: rev_sonnys_furniture\objects\coffee_table.p3d:0 Face 3, point 199, face points 199,199,198 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\coffee_table.p3d:0 Face 10, point 200, face points 200,200,199 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\coffee_table.p3d:0 Face 17, point 201, face points 201,201,200 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\coffee_table.p3d:0 Face 24, point 202, face points 202,202,201 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\coffee_table.p3d:0 Face 31, point 203, face points 203,203,202 - very small normal 0,0,0
Warnings in rev_sonnys_furniture\objects\coffee_table.p3d:0
Too detailed shadow lod in rev_sonnys_furniture\objects\coffee_table.p3d (0:0.000000 : 2892) - shadows disabled
Warning: rev_sonnys_furniture\objects\dining_table.p3d:0 Face 869, point 1061, face points 1061,1061,1060 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\dining_table.p3d:0 Face 880, point 1062, face points 1062,1062,1061 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\dining_table.p3d:0 Face 891, point 1063, face points 1063,1063,1062 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\dining_table.p3d:0 Face 902, point 1064, face points 1064,1064,1063 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\dining_table.p3d:0 Face 913, point 1065, face points 1065,1065,1064 - very small normal 0,0,0
Warnings in rev_sonnys_furniture\objects\dining_table.p3d:0
Warning: rev_sonnys_furniture\objects\refrigerator_black.p3d:0 Face 1308, point 1276, face points 1276,1276,1266 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\refrigerator_black.p3d:0 Face 1314, point 1281, face points 1281,1281,1271 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\refrigerator_black.p3d:0 Face 1320, point 1286, face points 1286,1286,1276 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\refrigerator_black.p3d:0 Face 1326, point 1291, face points 1291,1291,1281 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\refrigerator_black.p3d:0 Face 1332, point 1296, face points 1296,1296,1286 - very small normal 0,0,0
Warnings in rev_sonnys_furniture\objects\refrigerator_black.p3d:0
Warning: rev_sonnys_furniture\objects\microwave.p3d:8.5866e-005 Face 498, point 475, face points 475,760,499 - very small normal 0,0,0
Warnings in rev_sonnys_furniture\objects\microwave.p3d:0
Strange convex component95 in mm_buildings2\police_station\policestation.p3d:geometry
Strange convex component17 in enrico_batiments_2\serre\serre.p3d:geometry
Strange convex component18 in enrico_batiments_2\serre\serre.p3d:geometry
Strange convex component19 in enrico_batiments_2\serre\serre.p3d:geometryFire
Strange convex component20 in enrico_batiments_2\serre\serre.p3d:geometryFire
Strange convex component17 in enrico_batiments_2\serre\serre.p3d:geometryView
Strange convex component18 in enrico_batiments_2\serre\serre.p3d:geometryView
No speaker given for 'Ali Okonkwo'
No speaker given for 'Hamidi Azikiwe'
No speaker given for 'Hu Chang'
No speaker given for 'Tavish Anderson'
No speaker given for 'Donald Warren'
No speaker given for 'Mike Thompson'
No speaker given for 'Spencer Bennett'
No speaker given for 'Muhammad Okeke'
No speaker given for 'Mike White'
No speaker given for 'Connor Hill'
No speaker given for 'Kyle Young'
No speaker given for 'Dong Yeung'
No speaker given for 'Lu Chen'
No speaker given for 'Samuel Newton'
No speaker given for 'Luke O'Sullivan'
No speaker given for 'Jamie Taylor'
No speaker given for 'Lu Kung'
No speaker given for 'Archie Conrad'
No speaker given for 'Matthew White'
No speaker given for 'Oliver Clark'
No speaker given for 'Max Jones'
No speaker given for 'Katungi Sesse-Seko'
No speaker given for 'Jake Anderson'
No speaker given for 'Dwan Smith'
No speaker given for 'Greer Nelson'
No speaker given for 'Greer Moore'
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 1c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 2c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 3c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 4c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 5c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 6c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 7c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 8c not found
Wrong geometry convex component mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Convex component number 3. not found
No speaker given for 'Evangelos Costas'
No face for C Delta 1-4:102
No speaker given for 'Vasilis Karmanlis'
No face for C Delta 1-4:103
No speaker given for 'Evripidis Karmanlis'
No face for C Delta 1-4:104
No speaker given for 'Michalis Mastori'
No face for C Delta 1-4:105
No speaker given for 'Vasilis Zenon'
No face for C Delta 1-4:106
No speaker given for 'Kouris Manelia'
No face for C Delta 1-4:107
No speaker given for 'Angelos Nicolau'
No face for C Delta 1-4:108
No speaker given for 'Michalis Petridis'
No face for C Delta 1-4:109
No speaker given for 'Samaras Athanasiadis'
No face for C Delta 1-4:110
No speaker given for 'Biton Christou'
No face for C Delta 1-4:111
No speaker given for 'Fotini Dimitriadis'
No face for C Delta 1-4:112
No speaker given for 'Militiadis Manelia'
No face for C Delta 1-4:113
No speaker given for 'Sotiris Gikas'
No face for C Delta 1-4:114
No speaker given for 'Thanos Kammenou'
No face for C Delta 1-4:115
No speaker given for 'Sotiris Stanis'
No face for C Delta 1-4:116
No speaker given for 'Evripidis Manetta'
No face for C Delta 1-4:117
No speaker given for 'Nicolo Nicolau'
No face for C Delta 1-4:118
No speaker given for 'Costa Stanis'
No face for C Delta 1-4:119
No speaker given for 'Militiadis Papadopoulos'
No face for C Delta 1-4:120
No speaker given for 'Thamos Malas'
No face for C Delta 1-4:121
No speaker given for 'Panos Ioannou'
No face for C Delta 1-4:122
No speaker given for 'Vasilis Elias'
No face for C Delta 1-4:123
No speaker given for 'Gamba Achebe'
No speaker given for 'Thanos Ioannou'
No face for C Delta 1-4:129
No speaker given for 'Kofi Awolowo'
No speaker given for 'Zahur Sesse-Seko'
No speaker given for 'Becky Walker'
No speaker given for 'Theodoros Nicolau'
No speaker given for 'Jahi Igwe'
No speaker given for 'Teshi Sesse-Seko'
No speaker given for 'Danny Kelly'
No speaker given for 'Dixon Walker'
No speaker given for 'Katie Walker'
No speaker given for 'Kim Moore'
No speaker given for 'Julia Jackson'
No speaker given for 'Kostis Kanelloupou'
No speaker given for 'Evangelos Papadopoulos'
No speaker given for 'Lafteris Baros'
No speaker given for 'Vasilis Mylonaki'
No speaker given for 'Ali Ngige'
No speaker given for 'Batou Gowon'
No speaker given for 'Lewis Wilson'
No speaker given for 'Biton Costas'
No speaker given for 'Thamos Petridis'
No speaker given for 'Stavros Petridis'
No speaker given for 'Nikas Ioannou'
No speaker given for 'Mimis Bouras'
Performance warning: Very large search for 1125018 (>300 m)
Performance warning: Search for 1c863d62080# 1125018: u_addon_02_v1_f.p3d was very large (12600 m)
Performance warning: Very large search for 1573885 (>300 m)
Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
Strange convex component322 in a3\structures_f\research\dome_big_f.p3d:geometryFire
Strange convex component327 in a3\structures_f\research\dome_big_f.p3d:geometryFire
Performance warning: Search for 1c8650f8b80# 1573885: u_shop_02_v1_f.p3d was very large (25560 m)
Error in expression <ayerUID player,(profileName),playerSide,life_cash,life_atmbank];
_array = [];
_a>
Error position: <life_cash,life_atmbank];
_array = [];
_a>
Error Undefined variable in expression: life_cash
File mpmissions\Altis_Life.Altis\core\session\fn_updateRequest.sqf..., line 10
Error in expression <ife_gear;

_array = [];
_array pushBack life_hunger;
_array pushBack life_thirst>
Error position: <life_hunger;
_array pushBack life_thirst>
Error Undefined variable in expression: life_hunger
File mpmissions\Altis_Life.Altis\core\session\fn_updateRequest.sqf..., line 27
Error: Object(2 : 9671) not found
Error: Object(2 : 9676) not found
Error: Object(2 : 9678) not found
Error: Object(2 : 9680) not found
Error: Object(2 : 9682) not found
Error: Object(2 : 9684) not found
Error: Object(2 : 9686) not found
Error: Object(2 : 9688) not found
Error: Object(2 : 9690) not found
Error: Object(2 : 9692) not found
Error: Object(2 : 9694) not found
Error: Object(2 : 9696) not found
Error: Object(2 : 9698) not found
Error: Object(2 : 9700) not found
Error: Object(2 : 9702) not found
Error: Object(2 : 9704) not found
Error: Object(2 : 9706) not found
Error: Object(2 : 9708) not found
Error: Object(2 : 9710) not found
Error: Object(2 : 9712) not found
Error: Object(2 : 9714) not found
Error: Object(2 : 9716) not found
Error: Object(2 : 9718) not found
Error: Object(2 : 9720) not found
Error: Object(2 : 9722) not found
Error: Object(2 : 9724) not found
Error: Object(2 : 9726) not found
Error: Object(2 : 9728) not found
Error: Object(2 : 9730) not found
Error: Object(2 : 9732) not found
Error: Object(2 : 9734) not found
Error: Object(2 : 9738) not found
Error: Object(2 : 9739) not found
Error: Object(2 : 9741) not found
Error: Object(2 : 9743) not found
Error: Object(2 : 9747) not found
Error: Object(2 : 9750) not found
Error: Object(2 : 9751) not found
Error: Object(2 : 9753) not found
Error: Object(2 : 9775) not found
Error: Object(2 : 9779) not found
Error: Object(2 : 9780) not found
Error: Object(2 : 9791) not found
Error: Object(2 : 9793) not found
Error: Object(2 : 9797) not found
Error: Object(2 : 9798) not found
Error: Object(2 : 9802) not found
Error: Object(2 : 9803) not found
Error: Object(2 : 9805) not found
Error: Object(2 : 9807) not found
Error: Object(2 : 9809) not found
Error: Object(2 : 9811) not found
Error: Object(2 : 9813) not found
Error: Object(2 : 9815) not found
Error: Object(2 : 9817) not found
Error: Object(2 : 9825) not found
Error: Object(2 : 9827) not found
Error: Object(2 : 9838) not found
Error: Object(2 : 9840) not found
Error: Object(2 : 9842) not found
Error: Object(2 : 9844) not found
Error: Object(2 : 9846) not found
Error: Object(2 : 9848) not found
Error: Object(2 : 9856) not found
Error: Object(2 : 9858) not found
Error: Object(2 : 9860) not found
Error: Object(2 : 9871) not found
Error: Object(2 : 9873) not found
Error: Object(2 : 9877) not found
Error: Object(2 : 9880) not found
Error: Object(2 : 9883) not found
Error: Object(2 : 9886) not found
Error: Object(2 : 9902) not found
Error: Object(2 : 9904) not found
Error: Object(2 : 9908) not found
Error: Object(2 : 9909) not found
Error: Object(2 : 9911) not found
Error: Object(2 : 9913) not found
Error: Object(2 : 9915) not found
Error: Object(2 : 9982) not found
Error: Object(2 : 9986) not found
Error: Object(2 : 9989) not found
Error: Object(2 : 9995) not found
Error: Object(2 : 9999) not found
Error: Object(2 : 10003) not found
Error: Object(2 : 10011) not found
Error: Object(2 : 10014) not found
Error: Object(2 : 10017) not found
Error: Object(2 : 10018) not found
Error: Object(2 : 10022) not found
Error: Object(2 : 10023) not found
Error: Object(2 : 10030) not found
Error: Object(2 : 10038) not found
Error: Object(2 : 10069) not found
Error: Object(2 : 10077) not found
Error: Object(2 : 10081) not found
Error: Object(2 : 10097) not found
d:\bis\source\stable\futura\lib\network\networkserver.cpp NetworkServer::OnClientStateChanged:NOT IMPLEMENTED - briefing!
Mission id: 5955e2227bc7aafffa0bb3870c2f832b71b3d956
Attempt to override final function - bis_fnc_storeparamsvalues_data
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: kavala_1"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: kavala_1"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: kavala_1"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
CallExtension 'updatearmalog' could not be found
"<infiSTAR.de> updatearmalog callExtension: "
CallExtension loaded: armalog (D:\Altis Life Server\@infiSTAR_A3\armalog_x64.dll) [�w��]

"extDB3: Connected to Database"
"----------------------------------------------------------------------------------------------------"
"---------------------------------- Starting Altis Life Server Init ---------------------------------"
"------------------------------------------ Version 5.0.0 -------------------------------------------"
"----------------------------------------------------------------------------------------------------"
"----------------------------------------------------------------------------------------------------"
" End of Altis Life Server Init :: Total Execution Time 0.0039978 seconds "
"----------------------------------------------------------------------------------------------------"
"<infiSTAR.de> infiSTAR dll loaded successfully"
"<infiSTAR.de> [FR] <ALR> Altis Life Revive -https://discord.gg/dugFppcTRN>"
"<infiSTAR.de> [infiSTAR-license] ok"
"<infiSTAR.de> Loading infiSTAR code.."
"<infiSTAR.de> 3.227 - run.sqf - including AntiHack"
"<infiSTAR.de> VERSION: infiSTAR.de 14-02-2024 05-44-56 (v0260)"
"<infiSTAR.de> 3.227 - STARTING"
"<infiSTAR.de> 3.227 - TESTING IF serverCommandPassword IS SET PROPERLY"
"<infiSTAR.de> 3.227 - serverCommandPassword IS FINE"
"<infiSTAR.de>RANDOMVAR| <infiSTAR.de> _fnc_RandomGen: {
_fnc_actualGen = {
_abc = ['z','y','x','w','v','u','t','s','r','q','p','o','n','m','l','k','j','i','h','g','f','e','d','c','b','a'];
_gen = _abc select (random ((count _abc)-1));
_arr = ['a','c','a','b','3','f','7','3','e','9','9','2','1','c','4','d','6','c','6','7','7','d','c','7','4','8','7','2','4','c','3'];
_randmax = {((round(random _randminval)) + (round(random _randmaxval))) max _randminval};
for '_i' from 0 to (call _randmax)do
{
_gen = _gen + str(round(random 9)) + (_arr select (random ((count _arr)-1)));
};
};
_gen = '';
while{_gen=='' || _gen in _allRandomGenVars}do{
call _fnc_actualGen;
};
_allRandomGenVars pushBack _gen;
_gen
} [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| ----START-LINE---- (14-02-2024 05-44-56 - v0260) [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _adminbox: k8d6284496e366a69232327331c1c3c6d1133591848 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _fnc_mpPackets: f671c765c8729529b9647 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _FNC_AH_KICKLOG: v12196f4b375762130a47 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _FNC_AH_KICKLOGSPAWN: s43245f125c27374b047e349a633d9c527936561d2c3d43 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _FNC_PVAH_AdminReq: n465309338622943237233c2762526c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _token_by_uid: k8d58844109840d112799 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _uid_by_token: t4a541257762987341e0c140c3677 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _server_setTokenR: f3e57335c674183538c83 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _YourPlayerToken: q4b4c5456724a6c1e1987736e7d1c67236196 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _TokenCT: r524c1c2f1497222e9649 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_MAIN_BLOCK: b14432b686484610379136a0f0d13376d3a145f6c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AHKickOFF: j1d89237a6341912833021f3e267d2c0e136c3a14 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AHKickLog: v1c4c171f7773817f5c849a [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _clientdo: y426734728c1d1631523e7b6b64873c1c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_RunCheckENDVAR: b8c77625c82764b639c2a8416090c33772b87 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_RunCheckENDVAR_THREAD: f8f6c5d5b1b8c074c4c3f1716467c772741136c06 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_HackLogArrayRND: e5d420c3766437b4d331769762847 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_SurvLogArrayRND: y08362e37568d4662577d [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_AdmiLogArrayRND: w84774432531614645f47 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _TMPBAN: d64677364569c0d545717 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _massMessage: d44624443771c88673c14 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _massSysMessage: c718c7846140462746789 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AHpos: s8d5602492d5b571e6749346c9d527d1c2c663241638c5d94 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _ninetwo: g372c5c373a3e7457337e3c332b6f6c69131987 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _ninetwothread: q98672d373e142f3c32363c0d644667 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _adminsA: m439c946d763d42075464347439566c893d894c76838f [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _MC: w793f4d760714671327177c9a5c1f5b02821d4379 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _MCS: u8f823296383f578c391759484d24734c6f894c032c6c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _checkidicheckcheck: c570339066489767d735c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _lastshotmade: p0f427d577d5a7f7c4c77 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _dellocveh: w527a97644f991b67735344177f2d8d241b [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _inCombatTime: q8c673a2f899b1417831e [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _inCombatArray: u495958343489448c2c8a6a64 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _fnc_infiKeyHandler: t465c8a37771e444a0d3f3214162f83273b [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _vehicle_needs_check: e033772130b473b5c6a79167e66248724879d3c845c343486 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _MAKE_VAR_DUMP_RANDOM: f1312535c9c1f0887291203 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _MAKE_VAR_DUMP_CLIENT: y9624485f5d123757943f84 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _DUMPINGPLAYERUIDARRAY: j876849131964814387875884 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _CURRENTLYDUMPING: s075889417f587d498a77187a4632627a875c935c471137 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _antiantihack_rndvar: e1903343c224302235a5c6d [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _name_by_uid: j2259629c371a14446b1c171819767927 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _owner_by_uid: r32878d41871c0c74636e9d632459977c2c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _customcommandingMenu: q8279895c47144d5c37336687 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _customcommandingMenuOpen: y4c4c245c2434971777149c2d745294577c568d171736 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_KICKLOG: PVAHR_6o8e3g2p5r5l [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| ----END-LINE---- (14-02-2024 05-44-56 - v0260) [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de> 3.227 - loading AntiHack.."
Wrong init state
"[Farming System] Error: marker_tree_2 is not a marker on your map"
"[Farming System] Error: marker_or is not a marker on your map"
"[Farming System] Error: marker_sapphire is not a marker on your map"
"[Farming System] Error: marker_charbon is not a marker on your map"
"[Farming System] Error: marker_obsidienne is not a marker on your map"
"[Farming System] Error: marker_ruby is not a marker on your map"
Successfull attempt to execute serverCommand '#exec users' by server.
[[4,"hc_1"]]
"<infiSTAR.de> 3.4 - Thread MAIN: starting!"
"<infiSTAR.de> 3.4 - Thread MAIN: loading...!"
"<infiSTAR.de> 3.4 - Thread MAIN: compiling and/or sending none-threaded code!"
"<infiSTAR.de>CONNECTLOG| infiSTAR_PlayerConnected_id: 2 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>CONNECTLOG| infiSTAR_PlayerDisconnected_id: 2 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de> 3.4 - Thread MAIN: none-threaded code compiled and/or sent!"
"<infiSTAR.de> 3.4 - AntiHack loaded!"
"<infiSTAR.de> 3.4 - run.sqf - AntiHack included!"
"<infiSTAR.de> 3.4 - run.sqf - including AdminTools"
"<infiSTAR.de> 3.481 - run.sqf - AdminTools included!"
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
"[Farming System] 30 trees created with Pine_3 classname in the marker_tree_1 area"
"[Farming System] 30 stones created with TheProgrammer_Rock_iron classname in the marker_iron area"
"[Farming System] 30 stones created with TheProgrammer_Rock_cuivre classname in the marker_cuivre area"
"[Farming System] 30 stones created with TheProgrammer_Rock_diamant classname in the marker_diamant area"
"[Farming System] 30 stones created with TheProgrammer_Rock classname in the marker_rock area"
"<infiSTAR.de> 3.541 - Thread #1: Server Loop #1 starting now!"
"<infiSTAR.de> 3.541 - Thread #1: Server Loop #1 looping now!"
Error in expression <[""]]];
["armalog" callExtension ("7" + _url)] param [0, ["_out", "", [""]]];
_o>
Error position: <_url)] param [0, ["_out", "", [""]]];
_o>
Error Undefined variable in expression: _url
Error in expression <24c3&pr=A3'] call FN_ARMA_FETCHDATA;
if(_res find '$do$' != -1)exitWith{_res = (>
Error position: <_res find '$do$' != -1)exitWith{_res = (>
Error Undefined variable in expression: _res
[CBA] (xeh) INFO: [18509,75.592,3.541] PostInit started. MISSIONINIT: missionName=Altis_Life, missionVersion=54, worldName=Altis, isMultiplayer=true, isServer=true, isDedicated=true, CBA_isHeadlessClient=false, hasInterface=false, didJIP=false
[CBA] (versioning) INFO: [18509,75.613,3.541] VERSIONING:cba=3.16.1.231025, ace=3.15.2.69, tfar=1.-1.0.334
[ACE] (common) INFO: ACE is version 3.15.2.69 - CBA is version 3.16.1.231025 (min required 3.15.7)
SelectionID "31" is wrong for shape "tryk_unit\data\shirts_pad.p3d"
SelectionID "32" is wrong for shape "tryk_unit\data\shirts_pad.p3d"
SelectionID "31" is wrong for shape "tryk_unit\data\shirts_pad.p3d"
SelectionID "32" is wrong for shape "tryk_unit\data\shirts_pad.p3d"
[CBA] (xeh) INFO: [18509,75.68,3.541] PostInit finished.
CallExtension loaded: task_force_radio_pipe (D:\Altis Life Server\@ALR\task_force_radio_pipe_x64.dll) [�=]

[ACE] (common) INFO: Settings initialized.
[ACE] (common) INFO: 0 delayed functions running.
"[Display #24]"
BEServer: registering a new player #1071589021
Setting invalid pitch 0.0000 for hc_1
"<infiSTAR.de>CONNECTLOG| #0 Connected: headlessclient(HC10960) Owner: 4 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>TOKENLOG| Jasmin Caron(76561198081661165) CLIENT OWNER ID [5], TOKEN [sz989ntx33vcu811n] [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de> ADMIN-LOGIN: Jasmin Caron(76561198081661165) (v0260)"
"<infiSTAR.de>CONNECTLOG| 0h 3min | Connected: Jasmin Caron(76561198081661165 - 5) - time: 139.469 - serverFPS: 47.3373 [14-02-2024 05-44-56 - v0260]"
Scripting function 'bis_fnc_execvm' is not allowed to be remotely executed
User Jasmin Caron (76561198081661165) tried to remoteExec a disabled function
Error in expression <st pushBack [_uid, _new];
};
[_uid,_new select 2] call TON_fnc_setPlayTime;


_h>
Error position: <select 2] call TON_fnc_setPlayTime;


_h>
Error Zero divisor
File life_server\Functions\MySQL\fn_queryRequest.sqf..., line 127
Error in expression <) isEqualTo _uid) exitWith {
_x set [1, _time_gathered];
_x set [2, time];
};
} >
Error position: <_time_gathered];
_x set [2, time];
};
} >
Error Undefined variable in expression: _time_gathered
File life_server\Functions\PlayTime\fn_setPlayTime.sqf..., line 24
"--- [The-Programmer Logs] Player connection : Jasmin Caron (player-id : 76561198081661165) ---"
BEServer::finishDestroyPlayer(1840775789): users.get failed
"<infiSTAR.de>CONNECTLOG| 0h 4min | Disconnected: headlessclient(HC10960 - 4) - time: 187.095 - serverFPS: 47.0588 [14-02-2024 05-44-56 - v0260]"
Client: Remote object 4:0 not found
Class The_Programmer_AdvancedInsure destroyed with lock count 1
Class CfgDynamicMarketPrice destroyed with lock count 1
Class copper_refined destroyed with lock count 1
Class iron_refined destroyed with lock count 1
Class plank destroyed with lock count 1
Class salt_refined destroyed with lock count 1
Class glass destroyed with lock count 1
Class oil_processed destroyed with lock count 1
Class diamond_cut destroyed with lock count 1
Class cement destroyed with lock count 1
Class apple destroyed with lock count 1
Class peach destroyed with lock count 1
Class tbacon destroyed with lock count 1
Class Sharywan_Settings_TrafficSystem destroyed with lock count 1
Class The_Programmer_Credit_System destroyed with lock count 1
EPE manager release (0|9|0)
Deinitialized shape [Class: "C_Soldier_VR_F"; Shape: "a3\characters_f_bootcamp\common\vr_soldier_f.p3d";]
Deinitialized shape [Class: "C_Uniform_FormalSuit_01_tshirt_gray_F"; Shape: "a3\characters_f_aow\uniforms\formalsuit_01_tshirt_f.p3d";]
Deinitialized shape [Class: "B_Denim_T_BG_F"; Shape: "tryk_unit\data\denim_t_bg.p3d";]
Deinitialized shape [Class: "B_RED_T_BR_BG_F"; Shape: "tryk_unit\data\denim_t_bg.p3d";]
Deinitialized shape [Class: "B_Denim_T_BK_BG_F"; Shape: "tryk_unit\data\denim_t_bg.p3d";]
Deinitialized shape [Class: "B_pad_T_hood_ODBK_F"; Shape: "tryk_unit\data\hoodpad.p3d";]
Deinitialized shape [Class: "C_Man_casual_4_F"; Shape: "a3\characters_f\civil\c_man_casual_shorts_f.p3d";]
Deinitialized shape [Class: "niedobity_ems_deputy_F"; Shape: "a3\characters_f\blufor\b_soldier_01.p3d";]
Deinitialized shape [Class: "niedobity_ems_chief_F"; Shape: "a3\characters_f\blufor\b_soldier_01.p3d";]
Deinitialized shape [Class: "B_SUITS_F"; Shape: "tryk_unit\data\suits.p3d";]
Deinitialized shape [Class: "I_L_Uniform_01_tshirt_sport_F"; Shape: "a3\characters_f\civil\i_l_looter_01_tshirt_f.p3d";]
Deinitialized shape [Class: "Underwear_F"; Shape: "a3\characters_f\common\basicbody.p3d";]
Deinitialized shape [Class: "C_journalist_F"; Shape: "a3\characters_f_epc\civil\c_journalist.p3d";]
Deinitialized shape [Class: "B_T_PAD_BLK_pmc_BL_F"; Shape: "tryk_unit\data\shirts_pad.p3d";]
Deinitialized shape [Class: "B_T_PAD_TAN_pmc_RED2_F"; Shape: "tryk_unit\data\shirts_pad.p3d";]
Deinitialized shape [Class: "B_diver_F"; Shape: "a3\characters_f\common\diver_slotable.p3d";]
Deinitialized shape [Class: "I_diver_F"; Shape: "a3\characters_f\common\diver_slotable.p3d";]
Deinitialized shape [Class: "TCGM_F_Diver_Blu_C"; Shape: "tcgm_girls\model\tcgm_f_diver.p3d";]
Deinitialized shape [Class: "C_Uniform_ArtTShirt_01_v3_F"; Shape: "a3\characters_f\civil\arttshirt_01_f.p3d";]
Deinitialized shape [Class: "C_Man_ConstructionWorker_01_Red_F"; Shape: "a3\characters_f\civil\c_driver_f.p3d";]
Deinitialized shape [Class: "C_Man_ConstructionWorker_01_Blue_F"; Shape: "a3\characters_f\civil\c_driver_f.p3d";]
Deinitialized shape [Class: "C_Uniform_FormalSuit_01_khaki_F"; Shape: "a3\characters_f_aow\uniforms\formalsuit_01_f.p3d";]
Deinitialized shape [Class: "C_Uniform_FormalSuit_01_gray_F"; Shape: "a3\characters_f_aow\uniforms\formalsuit_01_f.p3d";]
Deinitialized shape [Class: "C_Uniform_FormalSuit_01_blue_F"; Shape: "a3\characters_f_aow\uniforms\formalsuit_01_f.p3d";]
Deinitialized shape [Class: "C_Uniform_FormalSuit_01_black_F"; Shape: "a3\characters_f_aow\uniforms\formalsuit_01_f.p3d";]
Deinitialized shape [Class: "O_Soldier_F"; Shape: "a3\characters_f\opfor\o_soldier_01.p3d";]
Deinitialized shape [Class: "B_RangeMaster_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";]
Deinitialized shape [Class: "CAN_Unit_CANPOLICE_SdQ"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";]
Deinitialized shape [Class: "C_Man_casual_2_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";]
Deinitialized shape [Class: "C_Man_formal_1_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";]
Deinitialized shape [Class: "C_Man_formal_3_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";]
Deinitialized shape [Class: "TCGM_f_underwear_soldier"; Shape: "tcgm_girls\model\tcgm_f_underwear.p3d";]
Deinitialized shape [Class: "TCGM_F_C_Mini_Marshal"; Shape: "tcgm_girls\model\tcgm_f_civil_mini.p3d";]
Deinitialized shape [Class: "TCGM_F_C_Mini_ScotchR"; Shape: "tcgm_girls\model\tcgm_f_civil_mini.p3d";]
Deinitialized shape [Class: "C_Nikos_aged"; Shape: "a3\characters_f_epc\civil\c_nikos_aged.p3d";]
Deinitialized shape [Class: "C_man_p_beggar_F_afro"; Shape: "a3\characters_f\civil\c_poor.p3d";]
Deinitialized shape [Class: "C_man_p_beggar_F"; Shape: "a3\characters_f\civil\c_poor.p3d";]
Deinitialized shape [Class: "C_man_p_fugitive_F_asia"; Shape: "a3\characters_f\civil\c_poor.p3d";]
Deinitialized shape [Class: "C_man_p_fugitive_F"; Shape: "a3\characters_f\civil\c_poor.p3d";]
Deinitialized shape [Class: "C_man_hunter_1_F"; Shape: "a3\characters_f\civil\c_hunter_f.p3d";]
Deinitialized shape [Class: "C_man_w_worker_F"; Shape: "a3\characters_f\common\coveralls.p3d";]
Deinitialized shape [Class: "C_man_1"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_3_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_6_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_shorts_3_F_euro"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_shorts_3_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_p_shorts_1_F_afro"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_p_shorts_1_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_Man_UtilityWorker_01_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_5_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_1_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_4_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_2_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
d:\bis\source\stable\futura\lib\network\networkserver.cpp ClearNetServer:NOT IMPLEMENTED - briefing!
Class WeaponFireGun destroyed with lock count 3
Class Table destroyed with lock count 3
Class T0 destroyed with lock count 3
Class T1 destroyed with lock count 3
Class T2 destroyed with lock count 3
Class T3 destroyed with lock count 3
Class T4 destroyed with lock count 3
Class T5 destroyed with lock count 3
Class T6 destroyed with lock count 3
Class T7 destroyed with lock count 3
Class T8 destroyed with lock count 3
Class T9 destroyed with lock count 3
Class T10 destroyed with lock count 3
Class T11 destroyed with lock count 3
Class T12 destroyed with lock count 3
Class T13 destroyed with lock count 3
Class T14 destroyed with lock count 3
Class T15 destroyed with lock count 3
Class T16 destroyed with lock count 3
Class T17 destroyed with lock count 3
Class T18 destroyed with lock count 3
Class T19 destroyed with lock count 3
Class T20 destroyed with lock count 3
Class T21 destroyed with lock count 3
Class T22 destroyed with lock count 3
Class WeaponCloudsGun destroyed with lock count 6
Class Table destroyed with lock count 6
Class T0 destroyed with lock count 6
Class WeaponCloudsMGun destroyed with lock count 3
Class Table destroyed with lock count 3
Class T0 destroyed with lock count 3
Class All destroyed with lock count 3
Class EventHandlers destroyed with lock count 3
Class CBA_Extended_EventHandlers destroyed with lock count 3
Class MarkerLights destroyed with lock count 3
Class NVGMarkers destroyed with lock count 3
Class NVGMarker destroyed with lock count 3
Class Turrets destroyed with lock count 3
Class HeadLimits destroyed with lock count 3
Class ViewPilot destroyed with lock count 3
Class ViewCargo destroyed with lock count 3
Class ViewOptics destroyed with lock count 3
Class PilotSpec destroyed with lock count 3
Class CargoSpec destroyed with lock count 3
Class Cargo1 destroyed with lock count 3
Class TransportWeapons destroyed with lock count 3
Class TransportMagazines destroyed with lock count 3
Class SoundEnvironExt destroyed with lock count 3
Class SoundEquipment destroyed with lock count 3
Class SoundGear destroyed with lock count 3
Class SoundBreath destroyed with lock count 3
Class SoundBreathSwimming destroyed with lock count 3
Class SoundBreathInjured destroyed with lock count 3
Class SoundHitScream destroyed with lock count 3
Class SoundInjured destroyed with lock count 3
Class SoundBreathAutomatic destroyed with lock count 3
Class SoundDrown destroyed with lock count 3
Class SoundChoke destroyed with lock count 3
Class SoundRecovered destroyed with lock count 3
Class SoundBurning destroyed with lock count 3
Class PulsationSound destroyed with lock count 3
Class SoundDrowning destroyed with lock count 3
Class Reflectors destroyed with lock count 3
Class FxExplo destroyed with lock count 3
Class AnimationSources destroyed with lock count 3
Class GunFire destroyed with lock count 3
Class GunClouds destroyed with lock count 3
Class MGunClouds destroyed with lock count 3
Class Damage destroyed with lock count 3
Class DestructionEffects destroyed with lock count 3
Class Light1 destroyed with lock count 3
Class Smoke1 destroyed with lock count 3
Class Fire1 destroyed with lock count 3
Class Sparks1 destroyed with lock count 3
Class Sound destroyed with lock count 3
Class Light2 destroyed with lock count 3
Class Fire2 destroyed with lock count 3
Class Smoke1_2 destroyed with lock count 3
Class camShakeGForce destroyed with lock count 3
Class camShakeDamage destroyed with lock count 3
Class SpeechVariants destroyed with lock count 3
Class Default destroyed with lock count 3
Class Static destroyed with lock count 2
Class DestructionEffects destroyed with lock count 2
Class EventHandlers destroyed with lock count 2
Class CBA_Extended_EventHandlers destroyed with lock count 2
Class CBA_NamespaceDummy destroyed with lock count 1
Class CBA_Extended_EventHandlers_base destroyed with lock count 3
Extensions:
extDB3 (D:\Altis Life Server\@extDB3\extDB3_x64.dll) [extDB3 v1033 Windows]

theprogrammer_core (D:\Altis Life Server\@The_Programmer\theprogrammer_core_x64.dll) [The-Programmer Core]

armalog (D:\Altis Life Server\@infiSTAR_A3\armalog_x64.dll) [�w��]

task_force_radio_pipe (D:\Altis Life Server\@ALR\task_force_radio_pipe_x64.dll) [�=]

[/CODE]
 
L'erreur que tu as n'est vraiment pas normale :(
Est-ce que tu peux envoyer tous les fichiers que tu as modifié entre le moment où ça fonctionnait et maintenant ?
j'ai corrigé quelque truc mais reste toujours sa et je spawn encore sur l'ile et avec aucune possibilité de respawn
[CODE title="rpt"]Initializing Steam server - Game Port: 2332, Steam Query Port: 2333
Steam AppId from steam_appid.txt: 107410
Unsupported language English in stringtable
➥ Context: mpmissions\Altis_Life.Altis\stringtable.xml
Unsupported language English in stringtable
➥ Context: mpmissions\Altis_Life.Altis\stringtable.xml
Mission Altis_Life.Altis: Number of roles (122) is different from 'description.ext::Header::maxPlayer' (126)
Connected to Steam servers
Starting mission:
Mission file: Altis_Life
Mission world: Altis
Mission Directory: mpmissions\Altis_Life.Altis\
Strange convex component202 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView
Strange convex component203 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView
Strange convex component145 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView
Strange convex component149 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView
Strange convex component115 in a3\structures_f\households\house_big01\u_house_big_01_v1_f.p3d:geometryView
Strange convex component117 in a3\structures_f\households\house_big01\u_house_big_01_v1_f.p3d:geometryView
"---------------------------------------------------------------------"
"---------------------------------------------------------------------"
CallExtension loaded: extDB3 (D:\Altis Life Server\@extDB3\extDB3_x64.dll) [extDB3 v1033 Windows]

"extDB3 Loaded"
"---------------------------------------------------------------------"
"---------------------------------------------------------------------"
CallExtension loaded: theprogrammer_core (D:\Altis Life Server\@The_Programmer\theprogrammer_core_x64.dll) [The-Programmer Core]

"----------------------------------------------------------------------------------------------------"
"---------------------------------------- The-Programmer Core ---------------------------------------"
"---------------------------------------- Core Version : 3.6 ----------------------------------------"
"---------------------------------------- DLL Version : 2.2 ---------------------------------------"
"---------------------------- Server Name : [FR] <ALR> Altis Life Revive -https://discord.gg/dugFppcTRN> ----------------------------"
"--------------------------------- World Name : Altis ---------------------------------"
"------------------------ Loading your products from www.the-programmer.com -------------------------"
"----------------------------------------------------------------------------------------------------"
"[The-Programmer] Loading The-Programmer Core v3.6 (latest)"
"[The-Programmer] Loading Billing System v3.2 (latest) - Modified files"
"[The-Programmer] Loading Whitelist Menu v3.0 (latest)"
"[The-Programmer] Loading Advanced GPS v2.4 (latest) - No files information"
"[The-Programmer] Loading Phone Numbers v4.1 (latest) - Modified files"
"[The-Programmer] Loading Key Transfer v5.8 (latest)"
"[The-Programmer] Loading Advanced Phone Upgrade v4.4 (latest)"
"[The-Programmer] Loading Advanced Identity v4.1 (latest)"
"[The-Programmer] Loading Restrain System v3.3 (latest)"
"[The-Programmer] Loading Dispatch System v4.3 (latest)"
"[The-Programmer] Loading Farming System v5.1 (latest) - Modified files"
"[The-Programmer] Loading Road Service System v2.1 (latest)"
"[The-Programmer] Loading Banking System v2.4 (latest)"
"[The-Programmer] Loading Dynamic Market v2.0 (latest) - No files information"
"[The-Programmer] Loading Traffic System v4.0 (latest)"
"[The-Programmer] Loading Rules Protection System v1.0 (latest)"
"[The-Programmer] Loading Advanced Insure v2.7 (latest) - No files information"
"[The-Programmer] Loading Iphone XI v3.5 (latest) - Modified files"
"[The-Programmer] Loading Credit System v2.2 (latest)"
"[The-Programmer] Loading Vehicle Shop v2.5 (latest)"
"[The-Programmer] Loading Jail System v1.2 (latest)"
"[The-Programmer] Loading Offroad Simulator v1.0 (latest)"
"----------------------------------------------------------------------------------------------------"
"--------------------------------------- The-Programmer Core ----------------------------------------"
"---------------------------------- SUCCESS ! 21 product(s) loaded ----------------------------------"
"--------------------------------------- End loading products ---------------------------------------"
"----------------------------------------------------------------------------------------------------"
[CBA] (xeh) INFO: [18404,32.31,0] PreInit started. v3.16.1.231025
[CBA] (settings) INFO: Reading settings from settings file.
[CBA] (settings) INFO: Finished reading settings from settings file.
[CBA] (xeh) WARNING: One or more children of class CAManBase do not support Extended Event Handlers. Fall back to loop.
[ACE] (common) INFO: Parsed Settings Configs [0.0 ms]
[CBA] (xeh) INFO: [18404,32.5,0] PreInit finished.
Error: Wheel reference not initialized
Error: Wheel reference not initialized
Error: Wheel reference not initialized
Error: Wheel reference not initialized
Strange convex component100 in enrico_batiments_4\garage_concess\garage_concess.p3d:geometryFire
Warning: rev_sonnys_furniture\objects\coffee_table.p3d:0 Face 3, point 199, face points 199,199,198 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\coffee_table.p3d:0 Face 10, point 200, face points 200,200,199 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\coffee_table.p3d:0 Face 17, point 201, face points 201,201,200 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\coffee_table.p3d:0 Face 24, point 202, face points 202,202,201 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\coffee_table.p3d:0 Face 31, point 203, face points 203,203,202 - very small normal 0,0,0
Warnings in rev_sonnys_furniture\objects\coffee_table.p3d:0
Too detailed shadow lod in rev_sonnys_furniture\objects\coffee_table.p3d (0:0.000000 : 2892) - shadows disabled
Warning: rev_sonnys_furniture\objects\dining_table.p3d:0 Face 869, point 1061, face points 1061,1061,1060 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\dining_table.p3d:0 Face 880, point 1062, face points 1062,1062,1061 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\dining_table.p3d:0 Face 891, point 1063, face points 1063,1063,1062 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\dining_table.p3d:0 Face 902, point 1064, face points 1064,1064,1063 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\dining_table.p3d:0 Face 913, point 1065, face points 1065,1065,1064 - very small normal 0,0,0
Warnings in rev_sonnys_furniture\objects\dining_table.p3d:0
Warning: rev_sonnys_furniture\objects\refrigerator_black.p3d:0 Face 1308, point 1276, face points 1276,1276,1266 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\refrigerator_black.p3d:0 Face 1314, point 1281, face points 1281,1281,1271 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\refrigerator_black.p3d:0 Face 1320, point 1286, face points 1286,1286,1276 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\refrigerator_black.p3d:0 Face 1326, point 1291, face points 1291,1291,1281 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\refrigerator_black.p3d:0 Face 1332, point 1296, face points 1296,1296,1286 - very small normal 0,0,0
Warnings in rev_sonnys_furniture\objects\refrigerator_black.p3d:0
Warning: rev_sonnys_furniture\objects\microwave.p3d:8.5866e-005 Face 498, point 475, face points 475,760,499 - very small normal 0,0,0
Warnings in rev_sonnys_furniture\objects\microwave.p3d:0
Strange convex component95 in mm_buildings2\police_station\policestation.p3d:geometry
Strange convex component17 in enrico_batiments_2\serre\serre.p3d:geometry
Strange convex component18 in enrico_batiments_2\serre\serre.p3d:geometry
Strange convex component19 in enrico_batiments_2\serre\serre.p3d:geometryFire
Strange convex component20 in enrico_batiments_2\serre\serre.p3d:geometryFire
Strange convex component17 in enrico_batiments_2\serre\serre.p3d:geometryView
Strange convex component18 in enrico_batiments_2\serre\serre.p3d:geometryView
No speaker given for 'Ali Okonkwo'
No speaker given for 'Hamidi Azikiwe'
No speaker given for 'Hu Chang'
No speaker given for 'Tavish Anderson'
No speaker given for 'Donald Warren'
No speaker given for 'Mike Thompson'
No speaker given for 'Spencer Bennett'
No speaker given for 'Muhammad Okeke'
No speaker given for 'Mike White'
No speaker given for 'Connor Hill'
No speaker given for 'Kyle Young'
No speaker given for 'Dong Yeung'
No speaker given for 'Lu Chen'
No speaker given for 'Samuel Newton'
No speaker given for 'Luke O'Sullivan'
No speaker given for 'Jamie Taylor'
No speaker given for 'Lu Kung'
No speaker given for 'Archie Conrad'
No speaker given for 'Matthew White'
No speaker given for 'Oliver Clark'
No speaker given for 'Max Jones'
No speaker given for 'Katungi Sesse-Seko'
No speaker given for 'Jake Anderson'
No speaker given for 'Dwan Smith'
No speaker given for 'Greer Nelson'
No speaker given for 'Greer Moore'
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 1c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 2c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 3c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 4c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 5c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 6c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 7c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 8c not found
Wrong geometry convex component mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Convex component number 3. not found
No speaker given for 'Evangelos Costas'
No face for C Delta 1-4:102
No speaker given for 'Vasilis Karmanlis'
No face for C Delta 1-4:103
No speaker given for 'Evripidis Karmanlis'
No face for C Delta 1-4:104
No speaker given for 'Michalis Mastori'
No face for C Delta 1-4:105
No speaker given for 'Vasilis Zenon'
No face for C Delta 1-4:106
No speaker given for 'Kouris Manelia'
No face for C Delta 1-4:107
No speaker given for 'Angelos Nicolau'
No face for C Delta 1-4:108
No speaker given for 'Michalis Petridis'
No face for C Delta 1-4:109
No speaker given for 'Samaras Athanasiadis'
No face for C Delta 1-4:110
No speaker given for 'Biton Christou'
No face for C Delta 1-4:111
No speaker given for 'Fotini Dimitriadis'
No face for C Delta 1-4:112
No speaker given for 'Militiadis Manelia'
No face for C Delta 1-4:113
No speaker given for 'Sotiris Gikas'
No face for C Delta 1-4:114
No speaker given for 'Thanos Kammenou'
No face for C Delta 1-4:115
No speaker given for 'Sotiris Stanis'
No face for C Delta 1-4:116
No speaker given for 'Evripidis Manetta'
No face for C Delta 1-4:117
No speaker given for 'Nicolo Nicolau'
No face for C Delta 1-4:118
No speaker given for 'Costa Stanis'
No face for C Delta 1-4:119
No speaker given for 'Militiadis Papadopoulos'
No face for C Delta 1-4:120
No speaker given for 'Thamos Malas'
No face for C Delta 1-4:121
No speaker given for 'Panos Ioannou'
No face for C Delta 1-4:122
No speaker given for 'Vasilis Elias'
No face for C Delta 1-4:123
No speaker given for 'Gamba Achebe'
No speaker given for 'Thanos Ioannou'
No face for C Delta 1-4:129
No speaker given for 'Kofi Awolowo'
No speaker given for 'Zahur Sesse-Seko'
No speaker given for 'Becky Walker'
No speaker given for 'Theodoros Nicolau'
No speaker given for 'Jahi Igwe'
No speaker given for 'Teshi Sesse-Seko'
No speaker given for 'Danny Kelly'
No speaker given for 'Dixon Walker'
No speaker given for 'Katie Walker'
No speaker given for 'Kim Moore'
No speaker given for 'Julia Jackson'
No speaker given for 'Kostis Kanelloupou'
No speaker given for 'Evangelos Papadopoulos'
No speaker given for 'Lafteris Baros'
No speaker given for 'Vasilis Mylonaki'
No speaker given for 'Ali Ngige'
No speaker given for 'Batou Gowon'
No speaker given for 'Lewis Wilson'
No speaker given for 'Biton Costas'
No speaker given for 'Thamos Petridis'
No speaker given for 'Stavros Petridis'
No speaker given for 'Nikas Ioannou'
No speaker given for 'Mimis Bouras'
Performance warning: Very large search for 1125018 (>300 m)
Performance warning: Search for 2c7b86c6080# 1125018: u_addon_02_v1_f.p3d was very large (12600 m)
Performance warning: Very large search for 1573885 (>300 m)
Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
Strange convex component322 in a3\structures_f\research\dome_big_f.p3d:geometryFire
Strange convex component327 in a3\structures_f\research\dome_big_f.p3d:geometryFire
Performance warning: Search for 2c7b9a29600# 1573885: u_shop_02_v1_f.p3d was very large (25560 m)
Error in expression <ayerUID player,(profileName),playerSide,life_cash,life_atmbank];
_array = [];
_a>
Error position: <life_cash,life_atmbank];
_array = [];
_a>
Error Undefined variable in expression: life_cash
File mpmissions\Altis_Life.Altis\core\session\fn_updateRequest.sqf..., line 10
Error in expression <ife_gear;

_array = [];
_array pushBack life_hunger;
_array pushBack life_thirst>
Error position: <life_hunger;
_array pushBack life_thirst>
Error Undefined variable in expression: life_hunger
File mpmissions\Altis_Life.Altis\core\session\fn_updateRequest.sqf..., line 27
Error: Object(2 : 9671) not found
Error: Object(2 : 9676) not found
Error: Object(2 : 9678) not found
Error: Object(2 : 9680) not found
Error: Object(2 : 9682) not found
Error: Object(2 : 9684) not found
Error: Object(2 : 9686) not found
Error: Object(2 : 9688) not found
Error: Object(2 : 9690) not found
Error: Object(2 : 9692) not found
Error: Object(2 : 9694) not found
Error: Object(2 : 9696) not found
Error: Object(2 : 9698) not found
Error: Object(2 : 9700) not found
Error: Object(2 : 9702) not found
Error: Object(2 : 9704) not found
Error: Object(2 : 9706) not found
Error: Object(2 : 9708) not found
Error: Object(2 : 9710) not found
Error: Object(2 : 9712) not found
Error: Object(2 : 9714) not found
Error: Object(2 : 9716) not found
Error: Object(2 : 9718) not found
Error: Object(2 : 9720) not found
Error: Object(2 : 9722) not found
Error: Object(2 : 9724) not found
Error: Object(2 : 9726) not found
Error: Object(2 : 9728) not found
Error: Object(2 : 9730) not found
Error: Object(2 : 9732) not found
Error: Object(2 : 9734) not found
Error: Object(2 : 9738) not found
Error: Object(2 : 9739) not found
Error: Object(2 : 9741) not found
Error: Object(2 : 9743) not found
Error: Object(2 : 9747) not found
Error: Object(2 : 9750) not found
Error: Object(2 : 9751) not found
Error: Object(2 : 9753) not found
Error: Object(2 : 9775) not found
Error: Object(2 : 9779) not found
Error: Object(2 : 9780) not found
Error: Object(2 : 9791) not found
Error: Object(2 : 9793) not found
Error: Object(2 : 9797) not found
Error: Object(2 : 9798) not found
Error: Object(2 : 9802) not found
Error: Object(2 : 9803) not found
Error: Object(2 : 9805) not found
Error: Object(2 : 9807) not found
Error: Object(2 : 9809) not found
Error: Object(2 : 9811) not found
Error: Object(2 : 9813) not found
Error: Object(2 : 9815) not found
Error: Object(2 : 9817) not found
Error: Object(2 : 9825) not found
Error: Object(2 : 9827) not found
Error: Object(2 : 9838) not found
Error: Object(2 : 9840) not found
Error: Object(2 : 9842) not found
Error: Object(2 : 9844) not found
Error: Object(2 : 9846) not found
Error: Object(2 : 9848) not found
Error: Object(2 : 9856) not found
Error: Object(2 : 9858) not found
Error: Object(2 : 9860) not found
Error: Object(2 : 9871) not found
Error: Object(2 : 9873) not found
Error: Object(2 : 9877) not found
Error: Object(2 : 9880) not found
Error: Object(2 : 9883) not found
Error: Object(2 : 9886) not found
Error: Object(2 : 9902) not found
Error: Object(2 : 9904) not found
Error: Object(2 : 9908) not found
Error: Object(2 : 9909) not found
Error: Object(2 : 9911) not found
Error: Object(2 : 9913) not found
Error: Object(2 : 9915) not found
Error: Object(2 : 9982) not found
Error: Object(2 : 9986) not found
Error: Object(2 : 9989) not found
Error: Object(2 : 9995) not found
Error: Object(2 : 9999) not found
Error: Object(2 : 10003) not found
Error: Object(2 : 10011) not found
Error: Object(2 : 10014) not found
Error: Object(2 : 10017) not found
Error: Object(2 : 10018) not found
Error: Object(2 : 10022) not found
Error: Object(2 : 10023) not found
Error: Object(2 : 10030) not found
Error: Object(2 : 10038) not found
Error: Object(2 : 10069) not found
Error: Object(2 : 10077) not found
Error: Object(2 : 10081) not found
Error: Object(2 : 10097) not found
d:\bis\source\stable\futura\lib\network\networkserver.cpp NetworkServer::OnClientStateChanged:NOT IMPLEMENTED - briefing!
Mission id: ede036886741e7edec5294980d52e1e13ec87683
Attempt to override final function - bis_fnc_storeparamsvalues_data
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: kavala_1"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: kavala_1"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: kavala_1"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
CallExtension 'updatearmalog' could not be found
"<infiSTAR.de> updatearmalog callExtension: "
CallExtension loaded: armalog (D:\Altis Life Server\@infiSTAR_A3\armalog_x64.dll) [�w��]

"extDB3: Connected to Database"
"----------------------------------------------------------------------------------------------------"
"---------------------------------- Starting Altis Life Server Init ---------------------------------"
"------------------------------------------ Version 5.0.0 -------------------------------------------"
"----------------------------------------------------------------------------------------------------"
"----------------------------------------------------------------------------------------------------"
" End of Altis Life Server Init :: Total Execution Time 0.00299835 seconds "
"----------------------------------------------------------------------------------------------------"
"<infiSTAR.de> infiSTAR dll loaded successfully"
"<infiSTAR.de> [FR] <ALR> Altis Life Revive -https://discord.gg/dugFppcTRN>"
"<infiSTAR.de> [infiSTAR-license] ok"
"<infiSTAR.de> Loading infiSTAR code.."
"<infiSTAR.de> 3.036 - run.sqf - including AntiHack"
"<infiSTAR.de> VERSION: infiSTAR.de 14-02-2024 05-44-56 (v0260)"
"<infiSTAR.de> 3.036 - STARTING"
"<infiSTAR.de> 3.036 - TESTING IF serverCommandPassword IS SET PROPERLY"
"<infiSTAR.de> 3.036 - serverCommandPassword IS FINE"
"<infiSTAR.de>RANDOMVAR| <infiSTAR.de> _fnc_RandomGen: {
_fnc_actualGen = {
_abc = ['z','y','x','w','v','u','t','s','r','q','p','o','n','m','l','k','j','i','h','g','f','e','d','c','b','a'];
_gen = _abc select (random ((count _abc)-1));
_arr = ['a','c','a','b','3','f','7','3','e','9','9','2','1','c','4','d','6','c','6','7','7','d','c','7','4','8','7','2','4','c','3'];
_randmax = {((round(random _randminval)) + (round(random _randmaxval))) max _randminval};
for '_i' from 0 to (call _randmax)do
{
_gen = _gen + str(round(random 9)) + (_arr select (random ((count _arr)-1)));
};
};
_gen = '';
while{_gen=='' || _gen in _allRandomGenVars}do{
call _fnc_actualGen;
};
_allRandomGenVars pushBack _gen;
_gen
} [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| ----START-LINE---- (14-02-2024 05-44-56 - v0260) [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _adminbox: f57233b743a372c260762031c64596c673c675b6b6f [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _fnc_mpPackets: q247486743107338d07886c2c7c5c547784 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _FNC_AH_KICKLOG: h99378237229404185626 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _FNC_AH_KICKLOGSPAWN: s5a378d99372878839c244c6a54876d445226 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _FNC_PVAH_AdminReq: g239c82341c3a0c84838d16216986077784 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _token_by_uid: v8c2c2d0c7977429c6b77 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _uid_by_token: p0d515779594687598c7d375d174786177792 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _server_setTokenR: s334c3c37891b47976733 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _YourPlayerToken: l317e3c3d880c7797841967749779294769 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _TokenCT: y778737175a367d473c27 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_MAIN_BLOCK: b978416872e4242433e1451678d730c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AHKickOFF: b67178d47461e1d0f2166587c566907445d6c2c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AHKickLog: p2b7d285364661d448b1c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _clientdo: v2c9d172e5a7902624a17369a135b77231d3c02 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_RunCheckENDVAR: j4e9c57482d6d49675c2a [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_RunCheckENDVAR_THREAD: r24342963821716037d185c2803 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_HackLogArrayRND: o315d67724c3c5c620c5b3c591d67 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_SurvLogArrayRND: w34762a8a940c0a7c7d6b225b5c3b0c348a7c7376 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_AdmiLogArrayRND: q684a7d617c637929773c3987579117391d2b [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _TMPBAN: m7c277e774347844c633c63431d21070c345c5987222257174c876b [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _massMessage: b234c14377c18067c245a3c6e1754466c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _massSysMessage: p23130c74371376233c43 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AHpos: q742f798d4812324a5359 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _ninetwo: w77536177679c72523c67582e57573d166c141a0d36411a3a [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _ninetwothread: e77348e9762079c246d87 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _adminsA: h57663c746264496282496d14937c1227628d631e877b67 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _MC: q5e23373917830c371b9247822b13918937 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _MCS: v531966787f56337d6274 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _checkidicheckcheck: x538783867d2f9c5c6d2b6768171c7c3c36363c84 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _lastshotmade: v4c1d7a1827773247070b4c544757 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _dellocveh: x2d72543c8711291c1c8f37846782243d5f4989377f5434 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _inCombatTime: b3612762363744b24871f2c5949770357876f3c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _inCombatArray: d6b07061378026c79833a13449e74973c213786342406 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _fnc_infiKeyHandler: o43674a594839840142186e429c668e483777 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _vehicle_needs_check: n2922631d33548747827e3a6d47383453 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _MAKE_VAR_DUMP_RANDOM: h227c72566d7d5c2c5c8b2c1c42 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _MAKE_VAR_DUMP_CLIENT: d53938a67674d661b5392 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _DUMPINGPLAYERUIDARRAY: f3c681a666e230d5f31293357012e320606 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _CURRENTLYDUMPING: s5d0d5c6462014d5f2e3e337a637c723c2389771b2756 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _antiantihack_rndvar: i7b332f877401137b337e1824746429775a86476a [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _name_by_uid: i370a07783c7c4c5857024c218356587a1c4f7d725d4714 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _owner_by_uid: c236c8c1e4698175f0c49 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _customcommandingMenu: p5499046c27273d3a4e4b8b77523c761d27030a5324512342 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _customcommandingMenuOpen: g57442c8c723d865766632a57179b2654 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_KICKLOG: PVAHR_9q4n0n8e7m6l1n [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| ----END-LINE---- (14-02-2024 05-44-56 - v0260) [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de> 3.036 - loading AntiHack.."
Wrong init state
"[Farming System] Error: marker_tree_2 is not a marker on your map"
"[Farming System] Error: marker_or is not a marker on your map"
"[Farming System] Error: marker_sapphire is not a marker on your map"
"[Farming System] Error: marker_charbon is not a marker on your map"
"[Farming System] Error: marker_obsidienne is not a marker on your map"
"[Farming System] Error: marker_ruby is not a marker on your map"
Successfull attempt to execute serverCommand '#exec users' by server.
[]
"<infiSTAR.de> 3.207 - Thread MAIN: starting!"
"<infiSTAR.de> 3.207 - Thread MAIN: loading...!"
"<infiSTAR.de> 3.207 - Thread MAIN: compiling and/or sending none-threaded code!"
"<infiSTAR.de>CONNECTLOG| infiSTAR_PlayerConnected_id: 2 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>CONNECTLOG| infiSTAR_PlayerDisconnected_id: 2 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de> 3.207 - Thread MAIN: none-threaded code compiled and/or sent!"
"<infiSTAR.de> 3.207 - AntiHack loaded!"
"<infiSTAR.de> 3.207 - run.sqf - AntiHack included!"
"<infiSTAR.de> 3.207 - run.sqf - including AdminTools"
"<infiSTAR.de> 3.207 - run.sqf - AdminTools included!"
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
"[Farming System] 30 trees created with Pine_3 classname in the marker_tree_1 area"
"[Farming System] 30 stones created with TheProgrammer_Rock_iron classname in the marker_iron area"
"[Farming System] 30 stones created with TheProgrammer_Rock_cuivre classname in the marker_cuivre area"
"[Farming System] 30 stones created with TheProgrammer_Rock_diamant classname in the marker_diamant area"
"[Farming System] 30 stones created with TheProgrammer_Rock classname in the marker_rock area"
"<infiSTAR.de> 3.342 - Thread #1: Server Loop #1 starting now!"
"<infiSTAR.de> 3.342 - Thread #1: Server Loop #1 looping now!"
Error in expression <[""]]];
["armalog" callExtension ("7" + _url)] param [0, ["_out", "", [""]]];
_o>
Error position: <_url)] param [0, ["_out", "", [""]]];
_o>
Error Undefined variable in expression: _url
Error in expression <24c3&pr=A3'] call FN_ARMA_FETCHDATA;
if(_res find '$do$' != -1)exitWith{_res = (>
Error position: <_res find '$do$' != -1)exitWith{_res = (>
Error Undefined variable in expression: _res
[CBA] (xeh) INFO: [18515,69.932,3.342] PostInit started. MISSIONINIT: missionName=Altis_Life, missionVersion=54, worldName=Altis, isMultiplayer=true, isServer=true, isDedicated=true, CBA_isHeadlessClient=false, hasInterface=false, didJIP=false
[CBA] (versioning) INFO: [18515,69.951,3.342] VERSIONING:cba=3.16.1.231025, ace=3.15.2.69, tfar=1.-1.0.334
[ACE] (common) INFO: ACE is version 3.15.2.69 - CBA is version 3.16.1.231025 (min required 3.15.7)
SelectionID "31" is wrong for shape "tryk_unit\data\shirts_pad.p3d"
SelectionID "32" is wrong for shape "tryk_unit\data\shirts_pad.p3d"
SelectionID "31" is wrong for shape "tryk_unit\data\shirts_pad.p3d"
SelectionID "32" is wrong for shape "tryk_unit\data\shirts_pad.p3d"
[CBA] (xeh) INFO: [18515,70.012,3.342] PostInit finished.
CallExtension loaded: task_force_radio_pipe (D:\Altis Life Server\@ALR\task_force_radio_pipe_x64.dll) [h��b�]

[ACE] (common) INFO: Settings initialized.
[ACE] (common) INFO: 0 delayed functions running.
BEServer: registering a new player #1482001957
"[Display #24]"
"<infiSTAR.de>TOKENLOG| Jasmin Caron(76561198081661165) CLIENT OWNER ID [4], TOKEN [mcvfd307bfbqena0] [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de> ADMIN-LOGIN: Jasmin Caron(76561198081661165) (v0260)"
"<infiSTAR.de>CONNECTLOG| 0h 2min | Connected: Jasmin Caron(76561198081661165 - 4) - time: 67.509 - serverFPS: 46.1095 [14-02-2024 05-44-56 - v0260]"
Scripting function 'bis_fnc_execvm' is not allowed to be remotely executed
User Jasmin Caron (76561198081661165) tried to remoteExec a disabled function
Error in expression <st pushBack [_uid, _new];
};
[_uid,_new select 2] call TON_fnc_setPlayTime;


_h>
Error position: <select 2] call TON_fnc_setPlayTime;


_h>
Error Zero divisor
File life_server\Functions\MySQL\fn_queryRequest.sqf..., line 127
Error in expression <) isEqualTo _uid) exitWith {
_x set [1, _time_gathered];
_x set [2, time];
};
} >
Error position: <_time_gathered];
_x set [2, time];
};
} >
Error Undefined variable in expression: _time_gathered
File life_server\Functions\PlayTime\fn_setPlayTime.sqf..., line 24
"--- [The-Programmer Logs] Player connection : Jasmin Caron (player-id : 76561198081661165) ---"
"<infiSTAR.de>CONNECTLOG| 0h 2min | Disconnected: Jasmin Caron(76561198081661165 - 4) - time: 84.061 - serverFPS: 46.5116 [14-02-2024 05-44-56 - v0260]"
Client: Remote object 4:0 not found
Class The_Programmer_AdvancedInsure destroyed with lock count 1
Class CfgDynamicMarketPrice destroyed with lock count 1
Class copper_refined destroyed with lock count 1
Class iron_refined destroyed with lock count 1
Class plank destroyed with lock count 1
Class salt_refined destroyed with lock count 1
Class glass destroyed with lock count 1
Class oil_processed destroyed with lock count 1
Class diamond_cut destroyed with lock count 1
Class cement destroyed with lock count 1
Class apple destroyed with lock count 1
Class peach destroyed with lock count 1
Class tbacon destroyed with lock count 1
Class Sharywan_Settings_TrafficSystem destroyed with lock count 1
Class The_Programmer_Credit_System destroyed with lock count 1
EPE manager release (0|9|0)
Deinitialized shape [Class: "C_Soldier_VR_F"; Shape: "a3\characters_f_bootcamp\common\vr_soldier_f.p3d";]
Deinitialized shape [Class: "C_Uniform_FormalSuit_01_tshirt_gray_F"; Shape: "a3\characters_f_aow\uniforms\formalsuit_01_tshirt_f.p3d";]
Deinitialized shape [Class: "B_Denim_T_BG_F"; Shape: "tryk_unit\data\denim_t_bg.p3d";]
Deinitialized shape [Class: "B_RED_T_BR_BG_F"; Shape: "tryk_unit\data\denim_t_bg.p3d";]
Deinitialized shape [Class: "B_Denim_T_BK_BG_F"; Shape: "tryk_unit\data\denim_t_bg.p3d";]
Deinitialized shape [Class: "B_pad_T_hood_ODBK_F"; Shape: "tryk_unit\data\hoodpad.p3d";]
Deinitialized shape [Class: "C_Man_casual_4_F"; Shape: "a3\characters_f\civil\c_man_casual_shorts_f.p3d";]
Deinitialized shape [Class: "niedobity_ems_deputy_F"; Shape: "a3\characters_f\blufor\b_soldier_01.p3d";]
Deinitialized shape [Class: "niedobity_ems_chief_F"; Shape: "a3\characters_f\blufor\b_soldier_01.p3d";]
Deinitialized shape [Class: "B_SUITS_F"; Shape: "tryk_unit\data\suits.p3d";]
Deinitialized shape [Class: "I_L_Uniform_01_tshirt_sport_F"; Shape: "a3\characters_f\civil\i_l_looter_01_tshirt_f.p3d";]
Deinitialized shape [Class: "Underwear_F"; Shape: "a3\characters_f\common\basicbody.p3d";]
Deinitialized shape [Class: "C_journalist_F"; Shape: "a3\characters_f_epc\civil\c_journalist.p3d";]
Deinitialized shape [Class: "B_T_PAD_BLK_pmc_BL_F"; Shape: "tryk_unit\data\shirts_pad.p3d";]
Deinitialized shape [Class: "B_T_PAD_TAN_pmc_RED2_F"; Shape: "tryk_unit\data\shirts_pad.p3d";]
Deinitialized shape [Class: "B_diver_F"; Shape: "a3\characters_f\common\diver_slotable.p3d";]
Deinitialized shape [Class: "I_diver_F"; Shape: "a3\characters_f\common\diver_slotable.p3d";]
Deinitialized shape [Class: "TCGM_F_Diver_Blu_C"; Shape: "tcgm_girls\model\tcgm_f_diver.p3d";]
Deinitialized shape [Class: "C_Uniform_ArtTShirt_01_v3_F"; Shape: "a3\characters_f\civil\arttshirt_01_f.p3d";]
Deinitialized shape [Class: "C_Man_ConstructionWorker_01_Red_F"; Shape: "a3\characters_f\civil\c_driver_f.p3d";]
Deinitialized shape [Class: "C_Man_ConstructionWorker_01_Blue_F"; Shape: "a3\characters_f\civil\c_driver_f.p3d";]
Deinitialized shape [Class: "C_Uniform_FormalSuit_01_khaki_F"; Shape: "a3\characters_f_aow\uniforms\formalsuit_01_f.p3d";]
Deinitialized shape [Class: "C_Uniform_FormalSuit_01_gray_F"; Shape: "a3\characters_f_aow\uniforms\formalsuit_01_f.p3d";]
Deinitialized shape [Class: "C_Uniform_FormalSuit_01_blue_F"; Shape: "a3\characters_f_aow\uniforms\formalsuit_01_f.p3d";]
Deinitialized shape [Class: "C_Uniform_FormalSuit_01_black_F"; Shape: "a3\characters_f_aow\uniforms\formalsuit_01_f.p3d";]
Deinitialized shape [Class: "O_Soldier_F"; Shape: "a3\characters_f\opfor\o_soldier_01.p3d";]
Deinitialized shape [Class: "B_RangeMaster_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";]
Deinitialized shape [Class: "CAN_Unit_CANPOLICE_SdQ"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";]
Deinitialized shape [Class: "C_Man_casual_2_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";]
Deinitialized shape [Class: "C_Man_formal_1_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";]
Deinitialized shape [Class: "C_Man_formal_3_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";]
Deinitialized shape [Class: "TCGM_f_underwear_soldier"; Shape: "tcgm_girls\model\tcgm_f_underwear.p3d";]
Deinitialized shape [Class: "TCGM_F_C_Mini_Marshal"; Shape: "tcgm_girls\model\tcgm_f_civil_mini.p3d";]
Deinitialized shape [Class: "TCGM_F_C_Mini_ScotchR"; Shape: "tcgm_girls\model\tcgm_f_civil_mini.p3d";]
Deinitialized shape [Class: "C_Nikos_aged"; Shape: "a3\characters_f_epc\civil\c_nikos_aged.p3d";]
Deinitialized shape [Class: "C_man_p_beggar_F_afro"; Shape: "a3\characters_f\civil\c_poor.p3d";]
Deinitialized shape [Class: "C_man_p_beggar_F"; Shape: "a3\characters_f\civil\c_poor.p3d";]
Deinitialized shape [Class: "C_man_p_fugitive_F_asia"; Shape: "a3\characters_f\civil\c_poor.p3d";]
Deinitialized shape [Class: "C_man_p_fugitive_F"; Shape: "a3\characters_f\civil\c_poor.p3d";]
Deinitialized shape [Class: "C_man_w_worker_F"; Shape: "a3\characters_f\common\coveralls.p3d";]
Deinitialized shape [Class: "C_man_hunter_1_F"; Shape: "a3\characters_f\civil\c_hunter_f.p3d";]
Deinitialized shape [Class: "C_man_1"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_3_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_6_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_shorts_3_F_euro"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_shorts_3_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_p_shorts_1_F_afro"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_p_shorts_1_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_Man_UtilityWorker_01_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_5_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_4_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_2_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_1_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
d:\bis\source\stable\futura\lib\network\networkserver.cpp ClearNetServer:NOT IMPLEMENTED - briefing!
Class WeaponFireGun destroyed with lock count 3
Class Table destroyed with lock count 3
Class T0 destroyed with lock count 3
Class T1 destroyed with lock count 3
Class T2 destroyed with lock count 3
Class T3 destroyed with lock count 3
Class T4 destroyed with lock count 3
Class T5 destroyed with lock count 3
Class T6 destroyed with lock count 3
Class T7 destroyed with lock count 3
Class T8 destroyed with lock count 3
Class T9 destroyed with lock count 3
Class T10 destroyed with lock count 3
Class T11 destroyed with lock count 3
Class T12 destroyed with lock count 3
Class T13 destroyed with lock count 3
Class T14 destroyed with lock count 3
Class T15 destroyed with lock count 3
Class T16 destroyed with lock count 3
Class T17 destroyed with lock count 3
Class T18 destroyed with lock count 3
Class T19 destroyed with lock count 3
Class T20 destroyed with lock count 3
Class T21 destroyed with lock count 3
Class T22 destroyed with lock count 3
Class WeaponCloudsGun destroyed with lock count 6
Class Table destroyed with lock count 6
Class T0 destroyed with lock count 6
Class WeaponCloudsMGun destroyed with lock count 3
Class Table destroyed with lock count 3
Class T0 destroyed with lock count 3
Class All destroyed with lock count 3
Class EventHandlers destroyed with lock count 3
Class CBA_Extended_EventHandlers destroyed with lock count 3
Class MarkerLights destroyed with lock count 3
Class NVGMarkers destroyed with lock count 3
Class NVGMarker destroyed with lock count 3
Class Turrets destroyed with lock count 3
Class HeadLimits destroyed with lock count 3
Class ViewPilot destroyed with lock count 3
Class ViewCargo destroyed with lock count 3
Class ViewOptics destroyed with lock count 3
Class PilotSpec destroyed with lock count 3
Class CargoSpec destroyed with lock count 3
Class Cargo1 destroyed with lock count 3
Class TransportWeapons destroyed with lock count 3
Class TransportMagazines destroyed with lock count 3
Class SoundEnvironExt destroyed with lock count 3
Class SoundEquipment destroyed with lock count 3
Class SoundGear destroyed with lock count 3
Class SoundBreath destroyed with lock count 3
Class SoundBreathSwimming destroyed with lock count 3
Class SoundBreathInjured destroyed with lock count 3
Class SoundHitScream destroyed with lock count 3
Class SoundInjured destroyed with lock count 3
Class SoundBreathAutomatic destroyed with lock count 3
Class SoundDrown destroyed with lock count 3
Class SoundChoke destroyed with lock count 3
Class SoundRecovered destroyed with lock count 3
Class SoundBurning destroyed with lock count 3
Class PulsationSound destroyed with lock count 3
Class SoundDrowning destroyed with lock count 3
Class Reflectors destroyed with lock count 3
Class FxExplo destroyed with lock count 3
Class AnimationSources destroyed with lock count 3
Class GunFire destroyed with lock count 3
Class GunClouds destroyed with lock count 3
Class MGunClouds destroyed with lock count 3
Class Damage destroyed with lock count 3
Class DestructionEffects destroyed with lock count 3
Class Light1 destroyed with lock count 3
Class Smoke1 destroyed with lock count 3
Class Fire1 destroyed with lock count 3
Class Sparks1 destroyed with lock count 3
Class Sound destroyed with lock count 3
Class Light2 destroyed with lock count 3
Class Fire2 destroyed with lock count 3
Class Smoke1_2 destroyed with lock count 3
Class camShakeGForce destroyed with lock count 3
Class camShakeDamage destroyed with lock count 3
Class SpeechVariants destroyed with lock count 3
Class Default destroyed with lock count 3
Class Static destroyed with lock count 2
Class DestructionEffects destroyed with lock count 2
Class EventHandlers destroyed with lock count 2
Class CBA_Extended_EventHandlers destroyed with lock count 2
Class CBA_NamespaceDummy destroyed with lock count 1
Class CBA_Extended_EventHandlers_base destroyed with lock count 3
Extensions:
extDB3 (D:\Altis Life Server\@extDB3\extDB3_x64.dll) [extDB3 v1033 Windows]

theprogrammer_core (D:\Altis Life Server\@The_Programmer\theprogrammer_core_x64.dll) [The-Programmer Core]

armalog (D:\Altis Life Server\@infiSTAR_A3\armalog_x64.dll) [�w��]

task_force_radio_pipe (D:\Altis Life Server\@ALR\task_force_radio_pipe_x64.dll) [h��b�]

[/CODE]
[CODE title="fn_queryRequest.sqf server"]#include "\life_server\script_macros.hpp"
/*
File: fn_queryRequest.sqf
Author: Bryan "Tonic" Boardwine

Description:
Handles the incoming request and sends an asynchronous query
request to the database.

Return:
ARRAY - If array has 0 elements it should be handled as an error in client-side files.
STRING - The request had invalid handles or an unknown error and is logged to the RPT.
*/
private ["_uid","_side","_query","_queryResult","_tickTime","_tmp"];
_uid = [_this,0,"",[""]] call BIS_fnc_param;
_side = [_this,1,sideUnknown,[civilian]] call BIS_fnc_param;
_ownerID = [_this,2,objNull,[objNull]] call BIS_fnc_param;

if (isNull _ownerID) exitWith {};

if (LIFE_SETTINGS(getNumber,"player_deathLog") isEqualTo 1) then {
_ownerID addMPEventHandler ["MPKilled", {_this call fn_whoDoneIt}];
};

_ownerID = owner _ownerID;

_query = switch (_side) do {
// West - 11 entries returned
case west: {format ["SELECT pid, name, cash, bankacc, adminlevel, donorlevel, cop_licenses, coplevel, cop_gear, blacklist, cop_stats, playtime FROM players WHERE pid='%1'",_uid];};
// Civilian - 12 entries returned
case civilian: {format ["SELECT pid, name, cash, bankacc, adminlevel, donorlevel, civ_licenses, arrested, civ_gear, civ_stats, civ_alive, civ_position, playtime FROM players WHERE pid='%1'",_uid];};
// Independent - 10 entries returned
case independent: {format ["SELECT pid, name, cash, bankacc, adminlevel, donorlevel, med_licenses, mediclevel, med_gear, med_stats, playtime FROM players WHERE pid='%1'",_uid];};
};

_tickTime = diag_tickTime;
_queryResult = [_query,2] call DB_fnc_asyncCall;

if (EXTDB_SETTING(getNumber,"DebugMode") isEqualTo 1) then {
diag_log "------------- Client Query Request -------------";
diag_log format ["QUERY: %1",_query];
diag_log format ["Time to complete: %1 (in seconds)",(diag_tickTime - _tickTime)];
diag_log format ["Result: %1",_queryResult];
diag_log "------------------------------------------------";
};

if (_queryResult isEqualType "") exitWith {
[] remoteExecCall ["SOCK_fnc_insertPlayerInfo",_ownerID];
};

if (count _queryResult isEqualTo 0) exitWith {
[] remoteExecCall ["SOCK_fnc_insertPlayerInfo",_ownerID];
};

//Blah conversion thing from a2net->extdb
_tmp = _queryResult select 2;
_queryResult set[2,[_tmp] call DB_fnc_numberSafe];
_tmp = _queryResult select 3;
_queryResult set[3,[_tmp] call DB_fnc_numberSafe];

//Parse licenses (Always index 6)
_new = [(_queryResult select 6)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_queryResult set[6,_new];

//Convert tinyint to boolean
_old = _queryResult select 6;
for "_i" from 0 to (count _old)-1 do {
_data = _old select _i;
_old set[_i,[_data select 0, ([_data select 1,1] call DB_fnc_bool)]];
};

_queryResult set[6,_old];

_new = [(_queryResult select 8)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_queryResult set[8,_new];
//Parse data for specific side.
switch (_side) do {
case west: {
_queryResult set[9,([_queryResult select 9,1] call DB_fnc_bool)];

//Parse Stats
_new = [(_queryResult select 10)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_queryResult set[10,_new];

//Playtime
_new = [(_queryResult select 11)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_index = TON_fnc_playtime_values_request find [_uid, _new];
if (_index != -1) then {
TON_fnc_playtime_values_request set[_index,-1];
TON_fnc_playtime_values_request = TON_fnc_playtime_values_request - [-1];
TON_fnc_playtime_values_request pushBack [_uid, _new];
} else {
TON_fnc_playtime_values_request pushBack [_uid, _new];
};
[_uid,_new select 0] call TON_fnc_setPlayTime;
};

case civilian: {
_queryResult set[7,([_queryResult select 7,1] call DB_fnc_bool)];

//Parse Stats
_new = [(_queryResult select 9)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_queryResult set[9,_new];

//Position
_queryResult set[10,([_queryResult select 10,1] call DB_fnc_bool)];
_new = [(_queryResult select 11)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_queryResult set[11,_new];

//Playtime
_new = [(_queryResult select 12)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_index = TON_fnc_playtime_values_request find [_uid, _new];
if (_index != -1) then {
TON_fnc_playtime_values_request set[_index,-1];
TON_fnc_playtime_values_request = TON_fnc_playtime_values_request - [-1];
TON_fnc_playtime_values_request pushBack [_uid, _new];
} else {
TON_fnc_playtime_values_request pushBack [_uid, _new];
};
[_uid,_new select 2] call TON_fnc_setPlayTime;

/* Make sure nothing else is added under here */
_houseData = _uid spawn max_keytransfer_fnc_fetchPlayerHouses;
waitUntil {scriptDone _houseData};
queryResult pushBack (missionNamespace getVariable [format ["houses%1",_uid],[]]);
_gangData = _uid spawn TON_fnc_queryPlayerGang;
waitUntil{scriptDone _gangData};
queryResult pushBack (missionNamespace getVariable [format ["gang%1",_uid],[]]);

};

case independent: {
//Parse Stats
_new = [(_queryResult select 9)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_queryResult set[9,_new];

//Playtime
_new = [(_queryResult select 10)] call DB_fnc_mresToArray;
if (_new isEqualType "") then {_new = call compile format ["%1", _new];};
_index = TON_fnc_playtime_values_request find [_uid, _new];
if !(_index isEqualTo -1) then {
TON_fnc_playtime_values_request set[_index,-1];
TON_fnc_playtime_values_request = TON_fnc_playtime_values_request - [-1];
TON_fnc_playtime_values_request pushBack [_uid, _new];
} else {
TON_fnc_playtime_values_request pushBack [_uid, _new];
};
[_uid,_new select 1] call TON_fnc_setPlayTime;
};
};

publicVariable "TON_fnc_playtime_values_request";

keyArr = missionNamespace getVariable [format ["%1_KEYS%2",_uid,_side],[]];
_queryResult pushBack _keyArr;

_queryResult remoteExec ["SOCK_fnc_requestReceived",_ownerID];
[/CODE]
[CODE title="fn_updateRequest.sqf server"]/*
File: fn_updateRequest.sqf
Author: Bryan "Tonic" Boardwine

Description:
Updates ALL player information in the database.
Information gets passed here from the client side file: core\session\fn_updateRequest.sqf
*/
private ["_uid","_side","_cash","_bank","_licenses","_gear","_stats","_name","_alive","_position","_query","_thread"];
_uid = [_this,0,"",[""]] call BIS_fnc_param;
_name = [_this,1,"",[""]] call BIS_fnc_param;
_side = [_this,2,sideUnknown,[civilian]] call BIS_fnc_param;
_cash = [_this,3,0,[0]] call BIS_fnc_param;
_bank = [_this,4,5000,[0]] call BIS_fnc_param;
_licenses = [_this,5,[],[[]]] call BIS_fnc_param;
_gear = [_this,6,[],[[]]] call BIS_fnc_param;
_stats = [_this,7,[100,100],[[]]] call BIS_fnc_param;
_alive = [_this,9,false,[true]] call BIS_fnc_param;
_position = [_this,10,[],[[]]] call BIS_fnc_param;

//Get to those error checks.
if ((_uid isEqualTo "") || (_name isEqualTo "")) exitWith {};

//Parse and setup some data.
_name = [_name] call DB_fnc_mresString;
_gear = [_gear] call DB_fnc_mresArray;
_stats = [_stats] call DB_fnc_mresArray;
_cash = [_cash] call DB_fnc_numberSafe;
_bank = [_bank] call DB_fnc_numberSafe;
_position = if (_side isEqualTo civilian) then {[_position] call DB_fnc_mresArray} else {[]};

//Does something license related but I can't remember I only know it's important?
for "_i" from 0 to count(_licenses)-1 do {
_bool = [(_licenses select _i) select 1] call DB_fnc_bool;
_licenses set[_i,[(_licenses select _i) select 0,_bool]];
};

_licenses = [_licenses] call DB_fnc_mresArray;

//PLAYTIME
_playtime = [_uid] call TON_fnc_getPlayTime;
_playtime_update = [];
{
if ((_x select 0) isEqualTo _uid) exitWith
{
_playtime_update pushBack [_x select 1];
};
} forEach TON_fnc_playtime_values_request;
_playtime_update = (_playtime_update select 0) select 0;
switch (_side) do {
case west: {_playtime_update set[0,_playtime];};
case civilian: {_playtime_update set[2,_playtime];};
case independent: {_playtime_update set[1,_playtime];};
};
_playtime_update = [_playtime_update] call DB_fnc_mresArray;

switch (_side) do {
case west: {_query = format ["UPDATE players SET name='%1', cash='%2', bankacc='%3', cop_gear='%4', cop_licenses='%5', cop_stats='%6', playtime='%7' WHERE pid='%8'",_name,_cash,_bank,_gear,_licenses,_stats,_playtime_update,_uid];};
case civilian: {_query = format ["UPDATE players SET name='%1', cash='%2', bankacc='%3', civ_licenses='%4', civ_gear='%5', arrested='%6', civ_stats='%7', civ_alive='%8', civ_position='%9', playtime='%10' WHERE pid='%11'",_name,_cash,_bank,_licenses,_gear,[_this select 8] call DB_fnc_bool,_stats,[_alive] call DB_fnc_bool,_position,_playtime_update,_uid];};
case independent: {_query = format ["UPDATE players SET name='%1', cash='%2', bankacc='%3', med_licenses='%4', med_gear='%5', med_stats='%6', playtime='%7' WHERE pid='%8'",_name,_cash,_bank,_licenses,_gear,_stats,_playtime_update,_uid];};
};


_queryResult = [_query,1] call DB_fnc_asyncCall;
[/CODE]
[CODE title="extDB3 log"]
extDB3: https://bitbucket.org/torndeco/extdb3/wiki/Home
extDB3: Version: 1.033
extDB3: Windows Version
Message: All development for extDB3 is done on a Linux Dedicated Server
Message: If you would like to Donate to extDB3 Development
Message: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2SUEFTGABTAM2
Message: Also leave a message if there is any particular feature you would like to see added.
Message: Thanks for all the people that have donated.
Message: Torndeco: 18/05/15

Message: This version was modified and include some improvement
Message: The lib was recompiled using new version of TBBMalloc, Boost and MariaDB connector
Message: The worker threads limitation was removed
Message: Steez: 30/10/2020


extDB3: Found extdb3-conf.ini
extDB3: Detected 12 Cores, Setting up 6 Worker Threads
extDB3: Detected 12 Cores, Setting up 12 Worker Threads
extDB3: ...
extDB3: ...
extDB3: ...
extDB3: ...
extDB3: ...
extDB3: ...
extDB3: ...
extDB3: ...
extDB3: ...
extDB3: ...
extDB3: ...
extDB3: ...


[13:00:55:984689 -05:00] [Thread 15804] extDB3: SQL: Initialized: Add Quotes around TEXT Datatypes mode: 2
[13:00:55:984716 -05:00] [Thread 15804] extDB3: SQL: Initialized: NULL = ""
[13:00:55:984729 -05:00] [Thread 15804] extDB3: Locked
[/CODE]
 
L'erreur que tu as n'est vraiment pas normale :(
Est-ce que tu peux envoyer tous les fichiers que tu as modifié entre le moment où ça fonctionnait et maintenant ?
jai corrigé encore d'aute il reste vraiment pas beaucoup d'erreur
[CODE title="rpt log"]Initializing Steam server - Game Port: 2332, Steam Query Port: 2333
Steam AppId from steam_appid.txt: 107410
Unsupported language English in stringtable
➥ Context: mpmissions\Altis_Life.Altis\stringtable.xml
Unsupported language English in stringtable
➥ Context: mpmissions\Altis_Life.Altis\stringtable.xml
Mission Altis_Life.Altis: Number of roles (122) is different from 'description.ext::Header::maxPlayer' (126)
Connected to Steam servers
Starting mission:
Mission file: Altis_Life
Mission world: Altis
Mission Directory: mpmissions\Altis_Life.Altis\
Strange convex component202 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView
Strange convex component203 in a3\structures_f\households\house_small01\d_house_small_01_v1_f.p3d:geometryView
Strange convex component145 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView
Strange convex component149 in a3\plants_f\tree\t_pinuss2s_b_f.p3d:geometryView
Strange convex component115 in a3\structures_f\households\house_big01\u_house_big_01_v1_f.p3d:geometryView
Strange convex component117 in a3\structures_f\households\house_big01\u_house_big_01_v1_f.p3d:geometryView
"---------------------------------------------------------------------"
"---------------------------------------------------------------------"
CallExtension loaded: extDB3 (D:\Altis Life Server\@extDB3\extDB3_x64.dll) [extDB3 v1033 Windows]

"extDB3 Loaded"
"---------------------------------------------------------------------"
"---------------------------------------------------------------------"
CallExtension loaded: theprogrammer_core (D:\Altis Life Server\@The_Programmer\theprogrammer_core_x64.dll) [The-Programmer Core]

"----------------------------------------------------------------------------------------------------"
"---------------------------------------- The-Programmer Core ---------------------------------------"
"---------------------------------------- Core Version : 3.6 ----------------------------------------"
"---------------------------------------- DLL Version : 2.2 ---------------------------------------"
"---------------------------- Server Name : [FR] <ALR> Altis Life Revive -https://discord.gg/dugFppcTRN> ----------------------------"
"--------------------------------- World Name : Altis ---------------------------------"
"------------------------ Loading your products from www.the-programmer.com -------------------------"
"----------------------------------------------------------------------------------------------------"
"[The-Programmer] Loading The-Programmer Core v3.6 (latest)"
"[The-Programmer] Loading Billing System v3.2 (latest) - Modified files"
"[The-Programmer] Loading Whitelist Menu v3.0 (latest)"
"[The-Programmer] Loading Advanced GPS v2.4 (latest) - No files information"
"[The-Programmer] Loading Phone Numbers v4.1 (latest) - Modified files"
"[The-Programmer] Loading Key Transfer v5.8 (latest)"
"[The-Programmer] Loading Advanced Phone Upgrade v4.4 (latest)"
"[The-Programmer] Loading Advanced Identity v4.1 (latest)"
"[The-Programmer] Loading Restrain System v3.3 (latest)"
"[The-Programmer] Loading Dispatch System v4.3 (latest)"
"[The-Programmer] Loading Farming System v5.1 (latest) - Modified files"
"[The-Programmer] Loading Road Service System v2.1 (latest)"
"[The-Programmer] Loading Banking System v2.4 (latest)"
"[The-Programmer] Loading Dynamic Market v2.0 (latest) - No files information"
"[The-Programmer] Loading Traffic System v4.0 (latest)"
"[The-Programmer] Loading Rules Protection System v1.0 (latest)"
"[The-Programmer] Loading Advanced Insure v2.7 (latest) - No files information"
"[The-Programmer] Loading Iphone XI v3.5 (latest) - Modified files"
"[The-Programmer] Loading Credit System v2.2 (latest)"
"[The-Programmer] Loading Vehicle Shop v2.5 (latest)"
"[The-Programmer] Loading Jail System v1.2 (latest)"
"[The-Programmer] Loading Offroad Simulator v1.0 (latest)"
"----------------------------------------------------------------------------------------------------"
"--------------------------------------- The-Programmer Core ----------------------------------------"
"---------------------------------- SUCCESS ! 21 product(s) loaded ----------------------------------"
"--------------------------------------- End loading products ---------------------------------------"
"----------------------------------------------------------------------------------------------------"
[CBA] (xeh) INFO: [18398,32.517,0] PreInit started. v3.16.1.231025
[CBA] (settings) INFO: Reading settings from settings file.
[CBA] (settings) INFO: Finished reading settings from settings file.
[CBA] (xeh) WARNING: One or more children of class CAManBase do not support Extended Event Handlers. Fall back to loop.
[ACE] (common) INFO: Parsed Settings Configs [0.0 ms]
[CBA] (xeh) INFO: [18398,32.709,0] PreInit finished.
Error: Wheel reference not initialized
Error: Wheel reference not initialized
Error: Wheel reference not initialized
Error: Wheel reference not initialized
Strange convex component100 in enrico_batiments_4\garage_concess\garage_concess.p3d:geometryFire
Warning: rev_sonnys_furniture\objects\coffee_table.p3d:0 Face 3, point 199, face points 199,199,198 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\coffee_table.p3d:0 Face 10, point 200, face points 200,200,199 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\coffee_table.p3d:0 Face 17, point 201, face points 201,201,200 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\coffee_table.p3d:0 Face 24, point 202, face points 202,202,201 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\coffee_table.p3d:0 Face 31, point 203, face points 203,203,202 - very small normal 0,0,0
Warnings in rev_sonnys_furniture\objects\coffee_table.p3d:0
Too detailed shadow lod in rev_sonnys_furniture\objects\coffee_table.p3d (0:0.000000 : 2892) - shadows disabled
Warning: rev_sonnys_furniture\objects\dining_table.p3d:0 Face 869, point 1061, face points 1061,1061,1060 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\dining_table.p3d:0 Face 880, point 1062, face points 1062,1062,1061 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\dining_table.p3d:0 Face 891, point 1063, face points 1063,1063,1062 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\dining_table.p3d:0 Face 902, point 1064, face points 1064,1064,1063 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\dining_table.p3d:0 Face 913, point 1065, face points 1065,1065,1064 - very small normal 0,0,0
Warnings in rev_sonnys_furniture\objects\dining_table.p3d:0
Warning: rev_sonnys_furniture\objects\refrigerator_black.p3d:0 Face 1308, point 1276, face points 1276,1276,1266 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\refrigerator_black.p3d:0 Face 1314, point 1281, face points 1281,1281,1271 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\refrigerator_black.p3d:0 Face 1320, point 1286, face points 1286,1286,1276 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\refrigerator_black.p3d:0 Face 1326, point 1291, face points 1291,1291,1281 - very small normal 0,0,0
Warning: rev_sonnys_furniture\objects\refrigerator_black.p3d:0 Face 1332, point 1296, face points 1296,1296,1286 - very small normal 0,0,0
Warnings in rev_sonnys_furniture\objects\refrigerator_black.p3d:0
Warning: rev_sonnys_furniture\objects\microwave.p3d:8.5866e-005 Face 498, point 475, face points 475,760,499 - very small normal 0,0,0
Warnings in rev_sonnys_furniture\objects\microwave.p3d:0
Strange convex component95 in mm_buildings2\police_station\policestation.p3d:geometry
Strange convex component17 in enrico_batiments_2\serre\serre.p3d:geometry
Strange convex component18 in enrico_batiments_2\serre\serre.p3d:geometry
Strange convex component19 in enrico_batiments_2\serre\serre.p3d:geometryFire
Strange convex component20 in enrico_batiments_2\serre\serre.p3d:geometryFire
Strange convex component17 in enrico_batiments_2\serre\serre.p3d:geometryView
Strange convex component18 in enrico_batiments_2\serre\serre.p3d:geometryView
No speaker given for 'Ali Okonkwo'
No speaker given for 'Hamidi Azikiwe'
No speaker given for 'Hu Chang'
No speaker given for 'Tavish Anderson'
No speaker given for 'Donald Warren'
No speaker given for 'Mike Thompson'
No speaker given for 'Spencer Bennett'
No speaker given for 'Muhammad Okeke'
No speaker given for 'Mike White'
No speaker given for 'Connor Hill'
No speaker given for 'Kyle Young'
No speaker given for 'Dong Yeung'
No speaker given for 'Lu Chen'
No speaker given for 'Samuel Newton'
No speaker given for 'Luke O'Sullivan'
No speaker given for 'Jamie Taylor'
No speaker given for 'Lu Kung'
No speaker given for 'Archie Conrad'
No speaker given for 'Matthew White'
No speaker given for 'Oliver Clark'
No speaker given for 'Max Jones'
No speaker given for 'Katungi Sesse-Seko'
No speaker given for 'Jake Anderson'
No speaker given for 'Dwan Smith'
No speaker given for 'Greer Nelson'
No speaker given for 'Greer Moore'
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 1c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 2c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 3c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 4c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 5c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 6c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 7c not found
Wrong vertex mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Selection 8c not found
Wrong geometry convex component mapping for person collision geometry found in a3\characters_f_epc\civil\c_nikos_aged.p3d. Convex component number 3. not found
No speaker given for 'Evangelos Costas'
No face for C Delta 1-4:102
No speaker given for 'Vasilis Karmanlis'
No face for C Delta 1-4:103
No speaker given for 'Evripidis Karmanlis'
No face for C Delta 1-4:104
No speaker given for 'Michalis Mastori'
No face for C Delta 1-4:105
No speaker given for 'Vasilis Zenon'
No face for C Delta 1-4:106
No speaker given for 'Kouris Manelia'
No face for C Delta 1-4:107
No speaker given for 'Angelos Nicolau'
No face for C Delta 1-4:108
No speaker given for 'Michalis Petridis'
No face for C Delta 1-4:109
No speaker given for 'Samaras Athanasiadis'
No face for C Delta 1-4:110
No speaker given for 'Biton Christou'
No face for C Delta 1-4:111
No speaker given for 'Fotini Dimitriadis'
No face for C Delta 1-4:112
No speaker given for 'Militiadis Manelia'
No face for C Delta 1-4:113
No speaker given for 'Sotiris Gikas'
No face for C Delta 1-4:114
No speaker given for 'Thanos Kammenou'
No face for C Delta 1-4:115
No speaker given for 'Sotiris Stanis'
No face for C Delta 1-4:116
No speaker given for 'Evripidis Manetta'
No face for C Delta 1-4:117
No speaker given for 'Nicolo Nicolau'
No face for C Delta 1-4:118
No speaker given for 'Costa Stanis'
No face for C Delta 1-4:119
No speaker given for 'Militiadis Papadopoulos'
No face for C Delta 1-4:120
No speaker given for 'Thamos Malas'
No face for C Delta 1-4:121
No speaker given for 'Panos Ioannou'
No face for C Delta 1-4:122
No speaker given for 'Vasilis Elias'
No face for C Delta 1-4:123
No speaker given for 'Gamba Achebe'
No speaker given for 'Thanos Ioannou'
No face for C Delta 1-4:129
No speaker given for 'Kofi Awolowo'
No speaker given for 'Zahur Sesse-Seko'
No speaker given for 'Becky Walker'
No speaker given for 'Theodoros Nicolau'
No speaker given for 'Jahi Igwe'
No speaker given for 'Teshi Sesse-Seko'
No speaker given for 'Danny Kelly'
No speaker given for 'Dixon Walker'
No speaker given for 'Katie Walker'
No speaker given for 'Kim Moore'
No speaker given for 'Julia Jackson'
No speaker given for 'Kostis Kanelloupou'
No speaker given for 'Evangelos Papadopoulos'
No speaker given for 'Lafteris Baros'
No speaker given for 'Vasilis Mylonaki'
No speaker given for 'Ali Ngige'
No speaker given for 'Batou Gowon'
No speaker given for 'Lewis Wilson'
No speaker given for 'Biton Costas'
No speaker given for 'Thamos Petridis'
No speaker given for 'Stavros Petridis'
No speaker given for 'Nikas Ioannou'
No speaker given for 'Mimis Bouras'
Performance warning: Very large search for 1125018 (>300 m)
Performance warning: Search for 1b0bd7d2080# 1125018: u_addon_02_v1_f.p3d was very large (12600 m)
Performance warning: Very large search for 1573885 (>300 m)
Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometry
Strange convex component317 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
Strange convex component318 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
Strange convex component319 in a3\rocks_f\blunt\bluntrock_wallv.p3d:geometryView
Strange convex component322 in a3\structures_f\research\dome_big_f.p3d:geometryFire
Strange convex component327 in a3\structures_f\research\dome_big_f.p3d:geometryFire
Performance warning: Search for 1b0bdb49600# 1573885: u_shop_02_v1_f.p3d was very large (25560 m)
Error in expression <ayerUID player,(profileName),playerSide,life_cash,life_atmbank];
_array = [];
_a>
Error position: <life_cash,life_atmbank];
_array = [];
_a>
Error Undefined variable in expression: life_cash
File mpmissions\Altis_Life.Altis\core\session\fn_updateRequest.sqf..., line 10
Error in expression <ife_gear;

_array = [];
_array pushBack life_hunger;
_array pushBack life_thirst>
Error position: <life_hunger;
_array pushBack life_thirst>
Error Undefined variable in expression: life_hunger
File mpmissions\Altis_Life.Altis\core\session\fn_updateRequest.sqf..., line 27
Error: Object(2 : 9671) not found
Error: Object(2 : 9676) not found
Error: Object(2 : 9678) not found
Error: Object(2 : 9680) not found
Error: Object(2 : 9682) not found
Error: Object(2 : 9684) not found
Error: Object(2 : 9686) not found
Error: Object(2 : 9688) not found
Error: Object(2 : 9690) not found
Error: Object(2 : 9692) not found
Error: Object(2 : 9694) not found
Error: Object(2 : 9696) not found
Error: Object(2 : 9698) not found
Error: Object(2 : 9700) not found
Error: Object(2 : 9702) not found
Error: Object(2 : 9704) not found
Error: Object(2 : 9706) not found
Error: Object(2 : 9708) not found
Error: Object(2 : 9710) not found
Error: Object(2 : 9712) not found
Error: Object(2 : 9714) not found
Error: Object(2 : 9716) not found
Error: Object(2 : 9718) not found
Error: Object(2 : 9720) not found
Error: Object(2 : 9722) not found
Error: Object(2 : 9724) not found
Error: Object(2 : 9726) not found
Error: Object(2 : 9728) not found
Error: Object(2 : 9730) not found
Error: Object(2 : 9732) not found
Error: Object(2 : 9734) not found
Error: Object(2 : 9738) not found
Error: Object(2 : 9739) not found
Error: Object(2 : 9741) not found
Error: Object(2 : 9743) not found
Error: Object(2 : 9747) not found
Error: Object(2 : 9750) not found
Error: Object(2 : 9751) not found
Error: Object(2 : 9753) not found
Error: Object(2 : 9775) not found
Error: Object(2 : 9779) not found
Error: Object(2 : 9780) not found
Error: Object(2 : 9791) not found
Error: Object(2 : 9793) not found
Error: Object(2 : 9797) not found
Error: Object(2 : 9798) not found
Error: Object(2 : 9802) not found
Error: Object(2 : 9803) not found
Error: Object(2 : 9805) not found
Error: Object(2 : 9807) not found
Error: Object(2 : 9809) not found
Error: Object(2 : 9811) not found
Error: Object(2 : 9813) not found
Error: Object(2 : 9815) not found
Error: Object(2 : 9817) not found
Error: Object(2 : 9825) not found
Error: Object(2 : 9827) not found
Error: Object(2 : 9838) not found
Error: Object(2 : 9840) not found
Error: Object(2 : 9842) not found
Error: Object(2 : 9844) not found
Error: Object(2 : 9846) not found
Error: Object(2 : 9848) not found
Error: Object(2 : 9856) not found
Error: Object(2 : 9858) not found
Error: Object(2 : 9860) not found
Error: Object(2 : 9871) not found
Error: Object(2 : 9873) not found
Error: Object(2 : 9877) not found
Error: Object(2 : 9880) not found
Error: Object(2 : 9883) not found
Error: Object(2 : 9886) not found
Error: Object(2 : 9902) not found
Error: Object(2 : 9904) not found
Error: Object(2 : 9908) not found
Error: Object(2 : 9909) not found
Error: Object(2 : 9911) not found
Error: Object(2 : 9913) not found
Error: Object(2 : 9915) not found
Error: Object(2 : 9982) not found
Error: Object(2 : 9986) not found
Error: Object(2 : 9989) not found
Error: Object(2 : 9995) not found
Error: Object(2 : 9999) not found
Error: Object(2 : 10003) not found
Error: Object(2 : 10011) not found
Error: Object(2 : 10014) not found
Error: Object(2 : 10017) not found
Error: Object(2 : 10018) not found
Error: Object(2 : 10022) not found
Error: Object(2 : 10023) not found
Error: Object(2 : 10030) not found
Error: Object(2 : 10038) not found
Error: Object(2 : 10069) not found
Error: Object(2 : 10077) not found
Error: Object(2 : 10081) not found
Error: Object(2 : 10097) not found
d:\bis\source\stable\futura\lib\network\networkserver.cpp NetworkServer::OnClientStateChanged:NOT IMPLEMENTED - briefing!
Mission id: cac873d752cb2a7de1e20582ffa332b04fa01d54
Attempt to override final function - bis_fnc_storeparamsvalues_data
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: kavala_1"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: kavala_1"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: kavala_1"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
"[TP - Traffic System] Init failed, error in detect in way1 for object: ChangeMe in config: pyrgos"
CallExtension 'updatearmalog' could not be found
"<infiSTAR.de> updatearmalog callExtension: "
CallExtension loaded: armalog (D:\Altis Life Server\@infiSTAR_A3\armalog_x64.dll) [�w��]

"extDB3: Connected to Database"
"----------------------------------------------------------------------------------------------------"
"---------------------------------- Starting Altis Life Server Init ---------------------------------"
"------------------------------------------ Version 5.0.0 -------------------------------------------"
"----------------------------------------------------------------------------------------------------"
"----------------------------------------------------------------------------------------------------"
" End of Altis Life Server Init :: Total Execution Time 0.00299835 seconds "
"----------------------------------------------------------------------------------------------------"
"<infiSTAR.de> infiSTAR dll loaded successfully"
"<infiSTAR.de> [FR] <ALR> Altis Life Revive -https://discord.gg/dugFppcTRN>"
"<infiSTAR.de> [infiSTAR-license] ok"
"<infiSTAR.de> Loading infiSTAR code.."
"<infiSTAR.de> 3.058 - run.sqf - including AntiHack"
"<infiSTAR.de> VERSION: infiSTAR.de 14-02-2024 05-44-56 (v0260)"
"<infiSTAR.de> 3.058 - STARTING"
"<infiSTAR.de> 3.058 - TESTING IF serverCommandPassword IS SET PROPERLY"
"<infiSTAR.de> 3.058 - serverCommandPassword IS FINE"
"<infiSTAR.de>RANDOMVAR| <infiSTAR.de> _fnc_RandomGen: {
_fnc_actualGen = {
_abc = ['z','y','x','w','v','u','t','s','r','q','p','o','n','m','l','k','j','i','h','g','f','e','d','c','b','a'];
_gen = _abc select (random ((count _abc)-1));
_arr = ['a','c','a','b','3','f','7','3','e','9','9','2','1','c','4','d','6','c','6','7','7','d','c','7','4','8','7','2','4','c','3'];
_randmax = {((round(random _randminval)) + (round(random _randmaxval))) max _randminval};
for '_i' from 0 to (call _randmax)do
{
_gen = _gen + str(round(random 9)) + (_arr select (random ((count _arr)-1)));
};
};
_gen = '';
while{_gen=='' || _gen in _allRandomGenVars}do{
call _fnc_actualGen;
};
_allRandomGenVars pushBack _gen;
_gen
} [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| ----START-LINE---- (14-02-2024 05-44-56 - v0260) [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _adminbox: g7466877747497874436127137c2c22 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _fnc_mpPackets: q52935b478c5c582c3c665377 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _FNC_AH_KICKLOG: v696617627d72670c675c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _FNC_AH_KICKLOGSPAWN: g5757027b035123938b3c87277c8c03 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _FNC_PVAH_AdminReq: a3889342a36719767292e6987242748226e376e [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _token_by_uid: j8b5c4c563c221667329c183136495e73 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _uid_by_token: n5c773804236c7c0c2e2c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _server_setTokenR: r7484271f6922297d242933 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _YourPlayerToken: r77840b73362d4147726c83172467278c2734619a246c94832241 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _TokenCT: b4d4d34073c670a542d7c7e3c0c399c695f272c033127 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_MAIN_BLOCK: b212c776c9a363c2a8c8c5c3c2777577452547d17 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AHKickOFF: d2e4117333734572776372d46473f6c6e0797475457892c043c4a37 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AHKickLog: p6e92470c672a07691323760d0c7c99128a [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _clientdo: s1c3c397e7c1b1d3f54673b0642 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_RunCheckENDVAR: m3873140d193f6c578327 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_RunCheckENDVAR_THREAD: m62734a541f847317917c732c2c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_HackLogArrayRND: r778a7c01862d2a794b41 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_SurvLogArrayRND: q074a69561839678c8d2b [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_AdmiLogArrayRND: f579c498e87348d643a8c372723829c149c94425622977944 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _TMPBAN: k56840f271c876c2732091c6307 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _massMessage: l5327265c5c3d8d8c268c14886a7344475d3b [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _massSysMessage: l47477c677b54672d337344469d0e07 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AHpos: w771b67232c1d1d04732357274b5734228f86182c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _ninetwo: e0c62563c8793242c72670f2954 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _ninetwothread: p690434132a71542e43473667110e3732772d8d [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _adminsA: o4979192647864c1d4d437789527d1c377d3759 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _MC: l1f4294675c631c0b394d5f8161964a2f6c971c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _MCS: x8a39124d8607023c73174c56830d57114204220a13872a1c23 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _checkidicheckcheck: o1f14634c6b1f4c3d08322784 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _lastshotmade: e92563d5c99776d1c8c5d [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _dellocveh: y7697781a127c87740257 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _inCombatTime: e634d47478c34174946871c935d56 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _inCombatArray: k741c7c087964182a533c37 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _fnc_infiKeyHandler: e972c8d2723974e8e3c17 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _vehicle_needs_check: l872267877c9c6724373a34 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _MAKE_VAR_DUMP_RANDOM: s1c8c3253695c697b0726093a068c6684335d2241677c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _MAKE_VAR_DUMP_CLIENT: x2f84128f5c376c97620d7c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _DUMPINGPLAYERUIDARRAY: e7c2b718d742c3c770467138777528c287473 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _CURRENTLYDUMPING: i495486378c675a4c8c063c497c466677073c6307 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _antiantihack_rndvar: h173e7b785706042d86145614325c89932a832c171c1c34 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _name_by_uid: n3c477452741d0a64832f3786 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _owner_by_uid: c888c4116570c2c688c32 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _customcommandingMenu: w772c343c6a0c690c174c574c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _customcommandingMenuOpen: p1d674389147f2a1763192c6827871d261c48479c477467645c [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| _AH_KICKLOG: PVAHR_2l8x8v7r1l4y [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>RANDOMVAR| ----END-LINE---- (14-02-2024 05-44-56 - v0260) [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de> 3.058 - loading AntiHack.."
Wrong init state
"[Farming System] Error: marker_tree_2 is not a marker on your map"
"[Farming System] Error: marker_or is not a marker on your map"
"[Farming System] Error: marker_sapphire is not a marker on your map"
"[Farming System] Error: marker_charbon is not a marker on your map"
"[Farming System] Error: marker_obsidienne is not a marker on your map"
"[Farming System] Error: marker_ruby is not a marker on your map"
Successfull attempt to execute serverCommand '#exec users' by server.
[]
"<infiSTAR.de> 3.23 - Thread MAIN: starting!"
"<infiSTAR.de> 3.23 - Thread MAIN: loading...!"
"<infiSTAR.de> 3.23 - Thread MAIN: compiling and/or sending none-threaded code!"
"<infiSTAR.de>CONNECTLOG| infiSTAR_PlayerConnected_id: 2 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>CONNECTLOG| infiSTAR_PlayerDisconnected_id: 2 [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de> 3.23 - Thread MAIN: none-threaded code compiled and/or sent!"
"<infiSTAR.de> 3.23 - AntiHack loaded!"
"<infiSTAR.de> 3.23 - run.sqf - AntiHack included!"
"<infiSTAR.de> 3.23 - run.sqf - including AdminTools"
"<infiSTAR.de> 3.307 - run.sqf - AdminTools included!"
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
Cannot create non-ai vehicle Pine_3,
"[Farming System] 30 trees created with Pine_3 classname in the marker_tree_1 area"
"[Farming System] 30 stones created with TheProgrammer_Rock_iron classname in the marker_iron area"
"[Farming System] 30 stones created with TheProgrammer_Rock_cuivre classname in the marker_cuivre area"
"[Farming System] 30 stones created with TheProgrammer_Rock_diamant classname in the marker_diamant area"
"[Farming System] 30 stones created with TheProgrammer_Rock classname in the marker_rock area"
"<infiSTAR.de> 3.366 - Thread #1: Server Loop #1 starting now!"
"<infiSTAR.de> 3.366 - Thread #1: Server Loop #1 looping now!"
Error in expression <[""]]];
["armalog" callExtension ("7" + _url)] param [0, ["_out", "", [""]]];
_o>
Error position: <_url)] param [0, ["_out", "", [""]]];
_o>
Error Undefined variable in expression: _url
Error in expression <24c3&pr=A3'] call FN_ARMA_FETCHDATA;
if(_res find '$do$' != -1)exitWith{_res = (>
Error position: <_res find '$do$' != -1)exitWith{_res = (>
Error Undefined variable in expression: _res
[CBA] (xeh) INFO: [18509,70.805,3.366] PostInit started. MISSIONINIT: missionName=Altis_Life, missionVersion=54, worldName=Altis, isMultiplayer=true, isServer=true, isDedicated=true, CBA_isHeadlessClient=false, hasInterface=false, didJIP=false
[CBA] (versioning) INFO: [18509,70.825,3.366] VERSIONING:cba=3.16.1.231025, ace=3.15.2.69, tfar=1.-1.0.334
[ACE] (common) INFO: ACE is version 3.15.2.69 - CBA is version 3.16.1.231025 (min required 3.15.7)
SelectionID "31" is wrong for shape "tryk_unit\data\shirts_pad.p3d"
SelectionID "32" is wrong for shape "tryk_unit\data\shirts_pad.p3d"
SelectionID "31" is wrong for shape "tryk_unit\data\shirts_pad.p3d"
SelectionID "32" is wrong for shape "tryk_unit\data\shirts_pad.p3d"
[CBA] (xeh) INFO: [18509,70.891,3.366] PostInit finished.
CallExtension loaded: task_force_radio_pipe (D:\Altis Life Server\@ALR\task_force_radio_pipe_x64.dll) [h�?S�]

[ACE] (common) INFO: Settings initialized.
[ACE] (common) INFO: 0 delayed functions running.
"[Display #24]"
BEServer: registering a new player #1547042408
"<infiSTAR.de>TOKENLOG| Jasmin Caron(76561198081661165) CLIENT OWNER ID [4], TOKEN [edp1s1ef7qtxa0nrg] [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de> ADMIN-LOGIN: Jasmin Caron(76561198081661165) (v0260)"
"<infiSTAR.de>CONNECTLOG| 0h 3min | Connected: Jasmin Caron(76561198081661165 - 4) - time: 125.647 - serverFPS: 46.2428 [14-02-2024 05-44-56 - v0260]"
Scripting function 'bis_fnc_execvm' is not allowed to be remotely executed
User Jasmin Caron (76561198081661165) tried to remoteExec a disabled function
"--- [The-Programmer Logs] Player connection : Jasmin Caron (player-id : 76561198081661165) ---"
"<infiSTAR.de FNC_AH_KICKLOGSPAWN> [""edp1s1ef7qtxa0nrg"",[""Jasmin Caron"",""76561198081661165"",""ALOG"",[84,101,108,101,112,111,114,116,32,116,111,32,91,51,54,54,48,46,48,54,44,49,51,48,57,48,46,52,44,48,93,40,71,80,83,58,32,48,51,54,49,51,48,41]],""2:11158""]"
"<infiSTAR.de FNC_AH_KICKLOGSPAWN> Jasmin Caron(76561198081661165) Token edp1s1ef7qtxa0nrg - objByNetID civ_1"
"<infiSTAR.de>ADMINLOG| 0h 4min | Jasmin Caron(76561198081661165) | Teleport to [3660.06,13090.4,0](GPS: 036130) [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de>CONNECTLOG| 0h 5min | Disconnected: Jasmin Caron(76561198081661165 - 4) - time: 234.929 - serverFPS: 46.5116 [14-02-2024 05-44-56 - v0260]"
Client: Remote object 4:0 not found
Warning: Cleanup player - person 2:11158 not found
"<infiSTAR.de>TOKENLOG| Jasmin Caron(76561198081661165) CLIENT OWNER ID [4], TOKEN [eswsv6yj2d0bkfsw] [14-02-2024 05-44-56 - v0260]"
"<infiSTAR.de> ADMIN-LOGIN: Jasmin Caron(76561198081661165) (v0260)"
"<infiSTAR.de>CONNECTLOG| 0h 5min | Connected: Jasmin Caron(76561198081661165 - 4) - time: 254.723 - serverFPS: 46.3768 [14-02-2024 05-44-56 - v0260]"
Scripting function 'bis_fnc_execvm' is not allowed to be remotely executed
User Jasmin Caron (76561198081661165) tried to remoteExec a disabled function
"--- [The-Programmer Logs] Player connection : Jasmin Caron (player-id : 76561198081661165) ---"
"<infiSTAR.de>CONNECTLOG| 0h 6min | Disconnected: Jasmin Caron(76561198081661165 - 4) - time: 290.638 - serverFPS: 46.9208 [14-02-2024 05-44-56 - v0260]"
Class The_Programmer_AdvancedInsure destroyed with lock count 1
Class CfgDynamicMarketPrice destroyed with lock count 1
Class copper_refined destroyed with lock count 1
Class iron_refined destroyed with lock count 1
Class plank destroyed with lock count 1
Class salt_refined destroyed with lock count 1
Class glass destroyed with lock count 1
Class oil_processed destroyed with lock count 1
Class diamond_cut destroyed with lock count 1
Class cement destroyed with lock count 1
Class apple destroyed with lock count 1
Class peach destroyed with lock count 1
Class tbacon destroyed with lock count 1
Class Sharywan_Settings_TrafficSystem destroyed with lock count 1
Class The_Programmer_Credit_System destroyed with lock count 1
EPE manager release (0|32|0)
Deinitialized shape [Class: "C_Soldier_VR_F"; Shape: "a3\characters_f_bootcamp\common\vr_soldier_f.p3d";]
Deinitialized shape [Class: "C_Uniform_FormalSuit_01_tshirt_gray_F"; Shape: "a3\characters_f_aow\uniforms\formalsuit_01_tshirt_f.p3d";]
Deinitialized shape [Class: "B_Denim_T_BG_F"; Shape: "tryk_unit\data\denim_t_bg.p3d";]
Deinitialized shape [Class: "B_RED_T_BR_BG_F"; Shape: "tryk_unit\data\denim_t_bg.p3d";]
Deinitialized shape [Class: "B_Denim_T_BK_BG_F"; Shape: "tryk_unit\data\denim_t_bg.p3d";]
Deinitialized shape [Class: "B_pad_T_hood_ODBK_F"; Shape: "tryk_unit\data\hoodpad.p3d";]
Deinitialized shape [Class: "C_Man_casual_4_F"; Shape: "a3\characters_f\civil\c_man_casual_shorts_f.p3d";]
Deinitialized shape [Class: "niedobity_ems_deputy_F"; Shape: "a3\characters_f\blufor\b_soldier_01.p3d";]
Deinitialized shape [Class: "niedobity_ems_chief_F"; Shape: "a3\characters_f\blufor\b_soldier_01.p3d";]
Deinitialized shape [Class: "B_SUITS_F"; Shape: "tryk_unit\data\suits.p3d";]
Deinitialized shape [Class: "I_L_Uniform_01_tshirt_sport_F"; Shape: "a3\characters_f\civil\i_l_looter_01_tshirt_f.p3d";]
Deinitialized shape [Class: "Underwear_F"; Shape: "a3\characters_f\common\basicbody.p3d";]
Deinitialized shape [Class: "C_journalist_F"; Shape: "a3\characters_f_epc\civil\c_journalist.p3d";]
Deinitialized shape [Class: "B_T_PAD_BLK_pmc_BL_F"; Shape: "tryk_unit\data\shirts_pad.p3d";]
Deinitialized shape [Class: "B_T_PAD_TAN_pmc_RED2_F"; Shape: "tryk_unit\data\shirts_pad.p3d";]
Deinitialized shape [Class: "B_diver_F"; Shape: "a3\characters_f\common\diver_slotable.p3d";]
Deinitialized shape [Class: "I_diver_F"; Shape: "a3\characters_f\common\diver_slotable.p3d";]
Deinitialized shape [Class: "TCGM_F_Diver_Blu_C"; Shape: "tcgm_girls\model\tcgm_f_diver.p3d";]
Deinitialized shape [Class: "C_Uniform_ArtTShirt_01_v3_F"; Shape: "a3\characters_f\civil\arttshirt_01_f.p3d";]
Deinitialized shape [Class: "C_Man_ConstructionWorker_01_Red_F"; Shape: "a3\characters_f\civil\c_driver_f.p3d";]
Deinitialized shape [Class: "C_Man_ConstructionWorker_01_Blue_F"; Shape: "a3\characters_f\civil\c_driver_f.p3d";]
Deinitialized shape [Class: "C_Uniform_FormalSuit_01_khaki_F"; Shape: "a3\characters_f_aow\uniforms\formalsuit_01_f.p3d";]
Deinitialized shape [Class: "C_Uniform_FormalSuit_01_gray_F"; Shape: "a3\characters_f_aow\uniforms\formalsuit_01_f.p3d";]
Deinitialized shape [Class: "C_Uniform_FormalSuit_01_blue_F"; Shape: "a3\characters_f_aow\uniforms\formalsuit_01_f.p3d";]
Deinitialized shape [Class: "C_Uniform_FormalSuit_01_black_F"; Shape: "a3\characters_f_aow\uniforms\formalsuit_01_f.p3d";]
Deinitialized shape [Class: "O_Soldier_F"; Shape: "a3\characters_f\opfor\o_soldier_01.p3d";]
Deinitialized shape [Class: "B_RangeMaster_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";]
Deinitialized shape [Class: "CAN_Unit_CANPOLICE_SdQ"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";]
Deinitialized shape [Class: "C_Man_casual_2_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";]
Deinitialized shape [Class: "C_Man_formal_1_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";]
Deinitialized shape [Class: "C_Man_formal_3_F"; Shape: "a3\characters_f\civil\c_poloshirtpants.p3d";]
Deinitialized shape [Class: "TCGM_f_underwear_soldier"; Shape: "tcgm_girls\model\tcgm_f_underwear.p3d";]
Deinitialized shape [Class: "TCGM_F_C_Mini_Marshal"; Shape: "tcgm_girls\model\tcgm_f_civil_mini.p3d";]
Deinitialized shape [Class: "TCGM_F_C_Mini_ScotchR"; Shape: "tcgm_girls\model\tcgm_f_civil_mini.p3d";]
Deinitialized shape [Class: "C_Nikos_aged"; Shape: "a3\characters_f_epc\civil\c_nikos_aged.p3d";]
Deinitialized shape [Class: "C_man_p_beggar_F_afro"; Shape: "a3\characters_f\civil\c_poor.p3d";]
Deinitialized shape [Class: "C_man_p_beggar_F"; Shape: "a3\characters_f\civil\c_poor.p3d";]
Deinitialized shape [Class: "C_man_p_fugitive_F_asia"; Shape: "a3\characters_f\civil\c_poor.p3d";]
Deinitialized shape [Class: "C_man_p_fugitive_F"; Shape: "a3\characters_f\civil\c_poor.p3d";]
Deinitialized shape [Class: "C_man_w_worker_F"; Shape: "a3\characters_f\common\coveralls.p3d";]
Deinitialized shape [Class: "C_man_hunter_1_F"; Shape: "a3\characters_f\civil\c_hunter_f.p3d";]
Deinitialized shape [Class: "C_man_1"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_3_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_6_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_shorts_3_F_euro"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_shorts_3_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_p_shorts_1_F_afro"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_p_shorts_1_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_Man_UtilityWorker_01_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_5_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_4_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_2_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
Deinitialized shape [Class: "C_man_polo_1_F"; Shape: "a3\characters_f\civil\c_poloshirt.p3d";]
d:\bis\source\stable\futura\lib\network\networkserver.cpp ClearNetServer:NOT IMPLEMENTED - briefing!
Class WeaponFireGun destroyed with lock count 3
Class Table destroyed with lock count 3
Class T0 destroyed with lock count 3
Class T1 destroyed with lock count 3
Class T2 destroyed with lock count 3
Class T3 destroyed with lock count 3
Class T4 destroyed with lock count 3
Class T5 destroyed with lock count 3
Class T6 destroyed with lock count 3
Class T7 destroyed with lock count 3
Class T8 destroyed with lock count 3
Class T9 destroyed with lock count 3
Class T10 destroyed with lock count 3
Class T11 destroyed with lock count 3
Class T12 destroyed with lock count 3
Class T13 destroyed with lock count 3
Class T14 destroyed with lock count 3
Class T15 destroyed with lock count 3
Class T16 destroyed with lock count 3
Class T17 destroyed with lock count 3
Class T18 destroyed with lock count 3
Class T19 destroyed with lock count 3
Class T20 destroyed with lock count 3
Class T21 destroyed with lock count 3
Class T22 destroyed with lock count 3
Class WeaponCloudsGun destroyed with lock count 6
Class Table destroyed with lock count 6
Class T0 destroyed with lock count 6
Class WeaponCloudsMGun destroyed with lock count 3
Class Table destroyed with lock count 3
Class T0 destroyed with lock count 3
Class All destroyed with lock count 3
Class EventHandlers destroyed with lock count 3
Class CBA_Extended_EventHandlers destroyed with lock count 3
Class MarkerLights destroyed with lock count 3
Class NVGMarkers destroyed with lock count 3
Class NVGMarker destroyed with lock count 3
Class Turrets destroyed with lock count 3
Class HeadLimits destroyed with lock count 3
Class ViewPilot destroyed with lock count 3
Class ViewCargo destroyed with lock count 3
Class ViewOptics destroyed with lock count 3
Class PilotSpec destroyed with lock count 3
Class CargoSpec destroyed with lock count 3
Class Cargo1 destroyed with lock count 3
Class TransportWeapons destroyed with lock count 3
Class TransportMagazines destroyed with lock count 3
Class SoundEnvironExt destroyed with lock count 3
Class SoundEquipment destroyed with lock count 3
Class SoundGear destroyed with lock count 3
Class SoundBreath destroyed with lock count 3
Class SoundBreathSwimming destroyed with lock count 3
Class SoundBreathInjured destroyed with lock count 3
Class SoundHitScream destroyed with lock count 3
Class SoundInjured destroyed with lock count 3
Class SoundBreathAutomatic destroyed with lock count 3
Class SoundDrown destroyed with lock count 3
Class SoundChoke destroyed with lock count 3
Class SoundRecovered destroyed with lock count 3
Class SoundBurning destroyed with lock count 3
Class PulsationSound destroyed with lock count 3
Class SoundDrowning destroyed with lock count 3
Class Reflectors destroyed with lock count 3
Class FxExplo destroyed with lock count 3
Class AnimationSources destroyed with lock count 3
Class GunFire destroyed with lock count 3
Class GunClouds destroyed with lock count 3
Class MGunClouds destroyed with lock count 3
Class Damage destroyed with lock count 3
Class DestructionEffects destroyed with lock count 3
Class Light1 destroyed with lock count 3
Class Smoke1 destroyed with lock count 3
Class Fire1 destroyed with lock count 3
Class Sparks1 destroyed with lock count 3
Class Sound destroyed with lock count 3
Class Light2 destroyed with lock count 3
Class Fire2 destroyed with lock count 3
Class Smoke1_2 destroyed with lock count 3
Class camShakeGForce destroyed with lock count 3
Class camShakeDamage destroyed with lock count 3
Class SpeechVariants destroyed with lock count 3
Class Default destroyed with lock count 3
Class Static destroyed with lock count 2
Class DestructionEffects destroyed with lock count 2
Class EventHandlers destroyed with lock count 2
Class CBA_Extended_EventHandlers destroyed with lock count 2
Class CBA_NamespaceDummy destroyed with lock count 1
Class CBA_Extended_EventHandlers_base destroyed with lock count 3
Extensions:
extDB3 (D:\Altis Life Server\@extDB3\extDB3_x64.dll) [extDB3 v1033 Windows]

theprogrammer_core (D:\Altis Life Server\@The_Programmer\theprogrammer_core_x64.dll) [The-Programmer Core]

armalog (D:\Altis Life Server\@infiSTAR_A3\armalog_x64.dll) [�w��]

task_force_radio_pipe (D:\Altis Life Server\@ALR\task_force_radio_pipe_x64.dll) [h�?S�]

[/CODE]
[CODE title="fn_updateRequest.sqf mission"]#include "..\..\script_macros.hpp"
/*
File: fn_updateRequest.sqf
Author: Tonic

Description:
Passes ALL player information to the server to save player data to the database.
*/
private ["_packet","_array","_flag","_alive","_position"];
_packet = [getPlayerUID player,(profileName),playerSide,CASH,BANK];
_array = [];
_alive = alive player;
_position = getPosATL player;
_flag = switch (playerSide) do {case west: {"cop"}; case civilian: {"civ"}; case independent: {"med"};};

{
_varName = LICENSE_VARNAME(configName _x,_flag);
_array pushBack [_varName,LICENSE_VALUE(configName _x,_flag)];
} forEach (format ["getText(_x >> 'side') isEqualTo '%1'",_flag] configClasses (missionConfigFile >> "Licenses"));

_packet pushBack _array;

[] call life_fnc_saveGear;
_packet pushBack life_gear;

_array = [];
_array pushBack life_hunger;
_array pushBack life_thirst;
_array pushBack (damage player);
_packet pushBack _array;

switch (playerSide) do {
case civilian: {
_packet pushBack life_is_arrested;
_packet pushBack _alive;
_packet pushBack _position;
};
};

if (life_HC_isActive) then {
_packet remoteExecCall ["HC_fnc_updateRequest",HC_Life];
} else {
_packet remoteExecCall ["DB_fnc_updateRequest",RSERV];
};
[/CODE]
 
Dernière édition:
Je vois vraiment pas l'erreur 😅

Tu peux essayer avec le fichier de base directement ?
et voici la seul erreur qui me reste j'ai essayer de pas prendre en compte le maccro et sa fonctionne pas non plus
[CODE title="rpt"]Error in expression < >> "value")];
} forEach (configClasses (missionConfigFile >> "Licenses") select>
Error position: <(missionConfigFile >> "Licenses") select>
Error Missing )
File mpmissions\Altis_Life.Altis\core\session\fn_updateRequest.sqf..., line 40
Error in expression < >> "value")];
} forEach (configClasses (missionConfigFile >> "Licenses") select>
Error position: <(missionConfigFile >> "Licenses") select>
Error Missing )
File mpmissions\Altis_Life.Altis\core\session\fn_updateRequest.sqf..., line 40[/CODE]
[CODE title="ile: fn_updateRequest.sqf mssion"]/*
File: fn_updateRequest.sqf
Author: Tonic

Description:
Passes ALL player information to the server to save player data to the database.
*/

private ["_packet","_array","_flag","_alive","_position"];

// Récupération des informations du joueur
_packet = [
getPlayerUID player,
profileName,
playerSide,
CASH,
BANK
];

// Initialisation du tableau _array
_array = [];

// Détermination si le joueur est en vie
_alive = alive player;

// Récupération de la position du joueur
_position = getPosATL player;

// Détermination du côté du joueur (civilian, cop, med)
_flag = switch (playerSide) do {
case west: {"cop"};
case civilian: {"civ"};
case independent: {"med"};
};

// Boucle pour récupérer les licences du joueur
{
_varName = configName _x;
_array pushBack [_varName, getNumber (missionConfigFile >> "Licenses" >> _x >> "value")];
} forEach (configClasses (missionConfigFile >> "Licenses") select {getText(_x >> 'side') isEqualTo _flag});

// Ajout du tableau _array à _packet
_packet pushBack _array;

// Sauvegarde de l'équipement du joueur
[] call life_fnc_saveGear;
_packet pushBack weapons player;

// Ajout de la faim, de la soif et des dégâts du joueur à _packet
_array = [];
_array pushBack (getVariable ["foodLevel", 0]);
_array pushBack (getVariable ["thirstLevel", 0]);
_array pushBack (damage player);
_packet pushBack _array;

// Si le joueur est un civil, ajouter certaines informations supplémentaires à _packet
if (playerSide == civilian) then {
_packet pushBack life_is_arrested;
_packet pushBack _alive;
_packet pushBack _position;
}

// Appel de la fonction appropriée en fonction de l'état du serveur Headless Client (HC)
if (life_HC_isActive) then {
_packet remoteExecCall ["HC_fnc_updateRequest", HC_Life];
} else {
_packet remoteExecCall ["DB_fnc_updateRequest", RSERV];
}
[/CODE]
 
C'est de nouveau l'erreur du début alors.
Essaye de copier/coller le fichier de base, mais je vois vraiment pas pourquoi ça ne marcher
ouais je crois que on devrais fermé mes 2 dernière demande J'ai tout remit sur un Framework 5.0 vierge et sa réglée mon problème
 
Dernière édition par un modérateur:
Solution