Advertisement
Guest User

Untitled

a guest
Nov 25th, 2014
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. default
  2. {
  3.     state_entry()
  4.     {
  5.         integer i;
  6.         while(i < 10)
  7.         {
  8.             integer c = ++i;
  9.             llOwnerSay((string)c);  
  10.         }
  11.     }
  12. }
  13.  
  14. [20:06] for test: 1
  15. [20:06] for test: 2
  16. [20:06] for test: 3
  17. [20:06] for test: 4
  18. [20:06] for test: 5
  19. [20:06] for test: 6
  20. [20:06] for test: 7
  21. [20:06] for test: 8
  22. [20:06] for test: 9
  23. [20:06] for test: 10
  24.  
  25. default
  26. {
  27.     state_entry()
  28.     {
  29.         integer i;
  30.         while(i < 10)
  31.         {
  32.             integer c = i++;
  33.             llOwnerSay((string)c);  
  34.         }
  35.     }
  36. }
  37.  
  38. [20:06] for test: 0
  39. [20:06] for test: 1
  40. [20:06] for test: 2
  41. [20:06] for test: 3
  42. [20:06] for test: 4
  43. [20:06] for test: 5
  44. [20:06] for test: 6
  45. [20:06] for test: 7
  46. [20:06] for test: 8
  47. [20:06] for test: 9
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement