|
Debby Amsterdam
Registered User
Join date: 23 Nov 2006
Posts: 10
|
01-01-2008 16:08
Hi everyone!
How can I transmit a texture/image between two objects? I am trying to make something like a Rental Vendor System. I want to put a image in an object/server and the same image appear in the vendors. Just like the vendors for rental systems.
Thanks for any help!
|
|
Okiphia Anatine
Okiphia Rayna
Join date: 22 Nov 2007
Posts: 454
|
01-01-2008 16:28
From: Debby Amsterdam Hi everyone!
How can I transmit a texture/image between two objects? I am trying to make something like a Rental Vendor System. I want to put a image in an object/server and the same image appear in the vendors. Just like the vendors for rental systems.
Thanks for any help! ah..in the same sim you could have the recieveing onbject do a regionsay 'gimmegimme', and have the giver object listen for that and llGiveInventory() to the one it hears..but I don't think that is what ou want.. i know theres a nother way that I know of gah...
|
|
Xhawkx Holden
Registered User
Join date: 1 Nov 2006
Posts: 86
|
01-01-2008 17:14
What you want to do is put the texture in the "server" object. Have a script read the key of the texture in the server object, and then pass that key to the client object.
You can pass the key using, as stated above, llRegionSay if in the same sim.
If not in the same sim use llEmail to send the key to the client object.
When the client object receives the key for the texture.. use the key to set the texture on a side of the recieving object.
|
|
Debby Amsterdam
Registered User
Join date: 23 Nov 2006
Posts: 10
|
01-01-2008 20:45
Thanks Xhawkx!!! Worked perfectly fine!!!
|
|
Void Singer
Int vSelf = Sing(void);
Join date: 24 Sep 2005
Posts: 6,973
|
01-02-2008 00:07
not that anyone with a listen on that channel can hear your object if it passes the uuid of the a texture, the reciprocal exchange of asking for it, and having it given using give inventory, e-mail, or within a script (via remote load script pin) is preferable... if that's not possible, then some sort of encryption or obfuscation would be a second best.
_____________________
| | . "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... | - 
|
|
Deanna Trollop
BZ Enterprises
Join date: 30 Jan 2006
Posts: 671
|
01-02-2008 07:24
Or do it through email, which can't be eavesdropped and works intrasim or intersim.
|