Advertisement
Guest User

Untitled

a guest
Dec 12th, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. TFV_tradersGetTypeOfTIDSHumanity =
  2. {
  3. private ["_current","_tids","_status","_compiled"];
  4. _compiled = [];
  5. {
  6. _tids = [];
  7. _current = call compile format ["menu_%1;",_x];
  8. { _tids set [(count _tids),(_x select 1)]; } forEach (_current select 0);
  9. _status = _current select 2;
  10. _compiled set [(count _compiled),[_x,_tids,_status]];
  11. } forEach serverTraders;
  12. _compiled
  13. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement