Advertisement
Dorex

Untitled

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