Jump to content

Help with bringing two scripts in one.


kayla Mekanic
 Share

You are about to reply to a thread that has been inactive for 3964 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

That's odd.  llGetListLength(test) should yield a value of 3.  Decrementing it to 2 and then starting the while loop should make it read

llList2String(test,2) = "c"

llList2String(test,1) = "b"

llList2String(test,0) = "a"

 My own preference would be to decrement index outside the if condition itself, as in

while (index){    --index;    llOwnerSay(llList2String(test,index);}

 But either way ought to work.  Maybe it's just Friday?

 

 

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 3964 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...