Jump to content

Firestorm attach error - invalid option


Rachel Harley
 Share

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

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

Recommended Posts

Hiya,

I have a really simple script that works with regular 'restrainedlove' but doesn't work with 'firestorm'. All its doing is :-

                 llOwnerSay("@attachallover:#RLV/\other/\cuffs2=force");

The above works with 'restrainedlove' and correctly attaches the attachments. But in firestorm I get this error (after turning on debug):-

failed: @attachallover:#rlv/other/cuffs2=force (invalid option)

My googling found no answer so I'm appealing to the experts! I see the case difference for the RLV folder but I tried making the folder name lower case and that did not fix it. All items in the folder are copies, not links.

Hope you have some ideas!

Thanks,
Rach.

Link to comment
Share on other sites

you're not supposed to include '#RLV' in the folder path, and A) don't use back slashes in your folder names, B) if your folder names actually have back slashes in them, the slashes need to be doubled in code:

llOwnerSay("@attachallover:other/cuffs2=force");

or if your folders really are named \other and \cuffs2:

llOwnerSay("@attachallover:\\other/\\cuffs2=force");

P.S. your top level RLV folder is indeed supposed to be UPPER_CASE: '#RLV'

Edited by Quistess Alpha
Link to comment
Share on other sites

7 hours ago, Rachel Harley said:

My googling

Don't google before directly reading the documentation: https://wiki.secondlife.com/wiki/LSL_Protocol/RestrainedLoveAPI

There aren't many, but there are a few specific examples in the documentation that make the usage clear.

Edited by Quistess Alpha
Link to comment
Share on other sites

Hi Tessa, you are a star! Thank you so much - I removed the #RLV part of the path and that fixed it.

I guess I didn't realize that the attach assumed a shared folder and was further confused as the other app I guess just ignored its presence in the path.

Thank you so much for taking the time to answer my question!

  • Like 1
Link to comment
Share on other sites

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