Advertisement
Guest User

Untitled

a guest
May 24th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. private[];
  2. disableSerialization;
  3.  
  4. createDialog "Life_Cop_PlaceablesMEDIC";
  5.  
  6. waitUntil { !isNull(findDisplay 40000) };
  7.  
  8. _display = findDisplay 40000;
  9. _placeables = _display displayCtrl 40001;
  10. lbClear _placeables;
  11.  
  12.  
  13. {
  14. _name = _x select 0;
  15. _className = _x select 1;
  16.  
  17.  
  18. _placeables lbAdd _name;
  19. _placeables lbSetData [(lbSize _placeables) - 1, _className];
  20. } foreach (life_placeablesMEDIC);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement