Advertisement
Guest User

Untitled

a guest
Jan 27th, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. list a;
  2. default
  3. {
  4. state_entry()
  5. {
  6. a=["num1", "num2", "command", "num1", "num2", "command"];
  7. //a = [0,1,2,3,4,5,6];
  8. llSay(0, "Hello " + (string) a);
  9.  
  10.  
  11. }
  12.  
  13. touch_start(integer total_number)
  14. {
  15. llSay(0, "Touched.");
  16. list lCommands = llList2ListStrided(a,2,-1,3);
  17. llSay(0, "try: " + (string) lCommands);
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement