Guest User

Untitled

a guest
May 21st, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // Lets declare the string and count var
  2. private ["_txt", "_i", "_value"];
  3. _txt = "";
  4. _i = 0;
  5.  
  6. _value = Sheep_1;
  7.  
  8. // Increment (!!)
  9. _i = _i + 1;
  10.  
  11. // Now we append a new string
  12. _txt = format["%1%2:%3\n", _txt, _i, str(getPos _value)];
  13.  
  14. // and now we print!
  15. hintC _txt;
Add Comment
Please, Sign In to add comment