Jump to content

Timed Notecard Reader exsample failed


dalocogamer
 Share

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

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

Recommended Posts

http://community.secondlife.com/t5/Scripting-Library/Timed-Notecard-Reader/td-p/457718   Found that looking for a notecard reader script that goes to chat. I try to run it stright into my object and get a syntax error on this line :

   list Words = llParseString2List(Message, , []);

 

I am not sure what I need to put in after Message. Can someone update this? Its outdated by 4 years.

Link to comment
Share on other sites

When the old forums were migrated to a newer platform (Jive, the one before this, as I recall) it trashed a lot of the script examples, particularly anything with [square brackets], which LSL uses to contain lists.

I think -- though I haven't tested it -- that the damaged line should read

  list Words = llParseString2List(Message,[" "] , []);

that is, "turn the message into a list, using spaces to delimit the list entries,".    The author of the original script is still active in SL as far as I know, so you could try messaging him if that doesn't work.

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 3647 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...