Jump to content

AnthonyE Staryk

Resident
  • Posts

    3
  • Joined

  • Last visited

Everything posted by AnthonyE Staryk

  1. This is what I came up with... default { state_entry() { integer i; integer j; for(i=0; i<10; i++) { llSay(0, "i= "+(string)i); for(j=0; j<10; j++) { llSay(0, " j = " + (string)j); } } } } Thanks for your help.
  2. That works yes, unfortunately... the flow I need is this enter the i for loop print i loop through the j for loop print j ...the output generated would be i=0 j=0 j=1 ... j=9 i=1 j=0 j=1 ... j=9 i=2...and so on until the i loop is completed.
  3. I have been constructing some LSL using two for loops and it looks like this is not at all possible with the way LSL is executed. Has anyone been able to do this? Thanks in advance
×
×
  • Create New...