Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. _control = _this select 0;
  2. diag_log format ["test %1",_control]; // le bouton qui l'appel
  3. _index = _this select 1;
  4. diag_log format ["test2 %1",_index]; //vehicule selectionner si c'erst le premier deuxieme etc de la liste qui est affichée.
  5.  
  6. //Fetch some information.
  7. _dataArr = CONTROL_DATAI(_control,_index);
  8. diag_log format [" Ceci est un test %1",_dataArr]; // même
  9. _dataArr = call compile format ["%1",_dataArr];
  10. diag_log format [" Ceci est un test 2 %1",_dataArr]; // même
  11. _className = (_dataArr select 0);
  12. _classNameLife = _className;
  13. _insurance = (_dataArr select 2 );
  14. diag_log format ["Ceci est un test 3 %1",insurance]; // any
  15.  
  16.  
  17. /*
  18. 9:23:02 "test Control #2802"
  19. 9:23:02 "test2 5"
  20. 9:23:02 " Ceci est un test [""B_Quadbike_01_F"",7,0]"
  21. 9:23:02 " Ceci est un test 2 [""B_Quadbike_01_F"",7,0]" // 0 ou 1 assuré ou non
  22. 9:23:02 "Ceci est un test 3 any"
  23. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement