Français Solved Transférer automatiquement le montant d'achat des terrains de sociétés au gouvernement

  • Auteur de la discussion Auteur de la discussion Vortesis
  • Date de début Date de début

Vortesis

User
24/12/20
2
0
250
Bonjour,

Je viens ici avec une idée en tête.

Je voudrais que lors de l'achat d'un terrain de sociétés par le PDG, le prix de celui-ci soit créditer sur le compte du gouvernement system directement.

Vu avec Maxence Maxence et sa pourra servir à d'autres je l'espéré.
 
Solution
Dans ton company_system/client/fn_buyNewPosition.sqf, cherche le code d'achat suivant :
Code:
_entreprise setVariable ["entreprise_bankacc",(_curBankACC - _price),true];
[(_entreprise getVariable ["entreprise_id",0]),5,(_entreprise getVariable ["entreprise_bankacc",0])] remoteExecCall ["max_entreprise_fnc_updateEntreprise",2];
[_entreprise,(name player),_price,4] remoteExecCall ["max_entreprise_fnc_insertEntrepriseLogs",2];

_entreprise setVariable ["entreprise_position",_marker,true];
[(_entreprise getVariable ["entreprise_id",0]),7,(_entreprise getVariable ["entreprise_position",""])] remoteExecCall ["max_entreprise_fnc_updateEntreprise",2];

hint (["STR_SUCCES_BUY_LAND","Max_Settings_Entreprise","Entreprise_Localization"] call...
Dans ton company_system/client/fn_buyNewPosition.sqf, cherche le code d'achat suivant :
Code:
_entreprise setVariable ["entreprise_bankacc",(_curBankACC - _price),true];
[(_entreprise getVariable ["entreprise_id",0]),5,(_entreprise getVariable ["entreprise_bankacc",0])] remoteExecCall ["max_entreprise_fnc_updateEntreprise",2];
[_entreprise,(name player),_price,4] remoteExecCall ["max_entreprise_fnc_insertEntrepriseLogs",2];

_entreprise setVariable ["entreprise_position",_marker,true];
[(_entreprise getVariable ["entreprise_id",0]),7,(_entreprise getVariable ["entreprise_position",""])] remoteExecCall ["max_entreprise_fnc_updateEntreprise",2];

hint (["STR_SUCCES_BUY_LAND","Max_Settings_Entreprise","Entreprise_Localization"] call theprogrammer_core_fnc_localize);

Ajoutes en dessous :

Code:
maxence_compte_gouv = maxence_compte_gouv + _price;
publicVariable "maxence_compte_gouv";
[maxence_compte_gouv,maxence_compte_cop,maxence_compte_med,maxence_compte_east,(name player),3,0,_price,0] remoteExec ["max_gouvernement_fnc_updateAccounts",2];
 
Dernière édition par un modérateur:
  • Like
Les réactions: Maxence et Vortesis
Solution