Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- touch_start(integer total_number)
- {
- list testList = ["a1", "b1", "a2", "b2", "a3", "b3"];
- list a = llList2ListStrided(testList, 0, -1, 2);
- list b = llList2ListStrided(llDeleteSubList(testList, 0, 0), 0, -1, 2);
- llOwnerSay("List of 'a' is: " + (string)a);
- llOwnerSay("List of 'b' is: " + (string)b);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement