The-Programmer Forum

JulienRoland a écrit le dernier message :
#5
Dcp pour mettre un log pour voir l'item que l'on a vendu :

Rends toi dans ==> Altis_Life.Altis/core/shops/fn_virt_sell.sqf

Recherche cette partie
Code:
if ([false,_type,_amount] call life_fnc_handleInv) then {
    hint format [localize "STR_Shop_Virt_SellItem",_amount,(localize _name),[_price] call life_fnc_numberText];
    CASH = CASH + _price;
    [0] call SOCK_fnc_updatePartial;
    [] call life_fnc_virt_update;
};


Et tu la remplace par ça :
Code:
if ([false,_type,_amount] call life_fnc_handleInv) then {
    hint format [localize "STR_Shop_Virt_SellItem",_amount,(localize _name),[_price] call life_fnc_numberText];
    CASH = CASH + _price;
    ["Vente d'un item",format ["%1 à vendu %2 en %3 fois pour %4",(name player), (localize _name), _amount, [_price] call life_fnc_numberText]] remoteExec ["TON_fnc_insertLog",2];
    [0] call SOCK_fnc_updatePartial;
    [] call life_fnc_virt_update;
};
ps: je ne l'ai pas testé mais normalement c'est bon
Hey Merci cela fonctionne