Advertisement
Guest User

qqwe

a guest
May 20th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 1.19 KB | None | 0 0
  1. /*
  2.     By KevinRoldan
  3.     ["ini"] spawn Old_fnc_garaje;
  4. */
  5. params["_p"];
  6.  
  7. if (_p isEqualTo "ini") exitWith {
  8.     disableSerialization;
  9.     ["garaje"] call Old_fnc_createDialog;
  10.  
  11.     _ui = uiNameSpace getVariable "garaje";
  12.     _fondo = _ui displayCtrl 1200;
  13.     _lista = _ui displayCtrl 1500;
  14.    
  15.     [_fondo] call Old_fnc_ctrlFade;
  16.     [_lista] call Old_fnc_ctrlFade;
  17.    
  18.     arrGaraje = [
  19.         ["Vehiculo", "Matricula", "% Combustible", "Tipo Combustible", ""],
  20.         ["--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------", "", "", "", ""],
  21.         ["Ferrari California", "H-8663-Z", "40%", "Diesel", "\roldan_textures\gui\car.paa"]
  22.         //["Nombre Veh", "Matricula", "Porcentaje Gasolina", "Tipo Gasolina", "icon"]
  23.     ];
  24.    
  25.     lnbClear 1500;
  26.     for "_idx" from 0 to (count arrGaraje) -1 do {
  27.         _lista lnbAddRow [format["%1", arrGaraje select _idx select 0], format["%1", arrGaraje select _idx select 1], format["%1", arrGaraje select _idx select 2], format["%1", arrGaraje select _idx select 3]];      _lista lnbSetPicture[[_idx,0] , arrGaraje select _idx select 4];
  28.     };
  29. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement