Advertisement
Dorex

Untitled

Aug 23rd, 2023
1,743
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. default
  2. {
  3.  
  4.     touch_start(integer total_number)
  5.     {
  6.         list testList = ["a1", "b1", "a2", "b2", "a3", "b3"];
  7.         list a = llList2ListStrided(testList, 0, -1, 2);
  8.         list b = llList2ListStrided(testList, 1, -1, 2);
  9.  
  10.         llOwnerSay("List of 'a' is: " + (string)a);
  11.         llOwnerSay("List of 'b' is: " +   (string)b);
  12.     }
  13. }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement