Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Owner problem

Mostorm Fleming
Second Life Resident
Join date: 2 Nov 2004
Posts: 4
10-23-2005 09:35
I'm having a problem with my object. I have ownership being set in on_res and in state_entry. When the object transfers to another person it will obey their commands, but it will also still obey me. So if I'm wearing the object both my object and their object will listen to me, but only their object will listen to them.

Seems that the object does transfer ownership, but it still considers me an owner after too...

Any ideas please?
Jillian Callahan
Rotary-winged Neko Girl
Join date: 24 Jun 2004
Posts: 3,766
10-23-2005 09:39
It sounds like you're not removing the old listen, and are adding a second.

Use llResetScript() to be certain of a fresh start for a new owner, unless you have information sotred that needs to be preserved. In that case, use llListenRemove().
_____________________
Mostorm Fleming
Second Life Resident
Join date: 2 Nov 2004
Posts: 4
10-23-2005 10:06
Thank you, that fixed it using llresetscript() :)