Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

llRemoteLoadScriptPin and deeded objects

Treat Rothschild
Registered User
Join date: 27 Apr 2006
Posts: 20
10-19-2008 17:52
I am working on an update system for some scripts and have run into a weird problem. If the object is undeeded, I can use llSetRemoteScriptAccessPin in the object to be updated then on the giver side use llRemoteLoadScriptPin and it works fine.

If, however, the item the script is in is deeded to the group, the scripts don't transfer. There's no error on the Debug channel it just doesn't transfer. When it is deeded, but I have mod rights. I've looked in the JIRA and don't see anything obvious there.

Any thoughts?
Void Singer
Int vSelf = Sing(void);
Join date: 24 Sep 2005
Posts: 6,973
10-19-2008 19:15
remote load only works if both items are owned by the same owner, try deeding the updater as well.... still may not work as I'm not sure the 'owner' of a deeded item has modify permission for the base object...
_____________________
|
| . "Cat-Like Typing Detected"
| . This post may contain errors in logic, spelling, and
| . grammar known to the SL populace to cause confusion
|
| - Please Use PHP tags when posting scripts/code, Thanks.
| - Can't See PHP or URL Tags Correctly? Check Out This Link...
| -
Talarus Luan
Ancient Archaean Dragon
Join date: 18 Mar 2006
Posts: 4,831
10-19-2008 19:16
You have to be the owner of the object in which you are trying to load the script. When you deed an object, it becomes group-owned. Thus, you are no longer the owner, and llRemoteLoadScriptPin won't work.

You might be able to get around it by also deeding the update object which is calling llRemoteLoadScriptPin, which should then work, since the owner key will match. However, I haven't tried this myself, so I can't guarantee that some other weird issue still will block it from working.
Treat Rothschild
Registered User
Join date: 27 Apr 2006
Posts: 20
10-20-2008 09:52
Yes! Deeding the updater worked. Thank you very much, that was driving me ape!