Advertisement
Guest User

Untitled

a guest
Sep 26th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. private["_array"];
  2. _array = param [0,[],[[]]];
  3. _array = str(str(_array));
  4. _array = toArray(_array);
  5.  
  6. for "_i" from 0 to (count _array)-1 do
  7. {
  8. _sel = _array select _i;
  9. if((_i != 0 && _i != ((count _array)-1))) then
  10. {
  11. if(_sel == 34) then
  12. {
  13. _array set[_i,96];
  14. };
  15. };
  16. };
  17.  
  18. toString(_array);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement