Mickie Mint
Registered User
Join date: 12 Sep 2009
Posts: 24
|
11-29-2009 03:42
Hey everyone,
I've been looking around for a while now for a good script that allows a attachment to be controlled by a hud.
To be more specific, I'm looking for a script that allows me to control a sculptie male genital...true a HUD is preferred but just by touch will do as well for now, now if anyone may know where i can find such a script i would be grateful or if anyone can somewhat tell me the price of such a script to be written and be delivered full perms so i can sell the genitals i would greatly appreciate it.
For more info, just contact me in world, or send me a PM.
Thank you for reading and helping,
Mickie Mint
|
Rolig Loon
Not as dumb as I look
Join date: 22 Mar 2007
Posts: 2,482
|
11-29-2009 08:41
Try looking in XStreetSL or asking in the Products Wanted forum. You'll have much better luck. This forum is the place to come if you want to learn how to write your own scripts or if you have scripting knowledge to share, not the place to ask where to buy scripts.
_____________________
It's hard to tell gender from names around here but if you care, Rolig = she. And I exist only in SL, so don't ask....  Look for my work in XStreetSL at 
|
Mickie Mint
Registered User
Join date: 12 Sep 2009
Posts: 24
|
11-30-2009 05:24
Thanks for the tip :3,
I got a basic script but i can't make head or tales out of it >.>
|
Johan Laurasia
Fully Rezzed
Join date: 31 Oct 2006
Posts: 1,394
|
11-30-2009 09:59
From: Mickie Mint Thanks for the tip :3,
I got a basic script but i can't make head or tales out of it >.> Start Here.... http://wiki.secondlife.com/wiki/LSL_PortalRead about events, and what they are, then look up the functions you see in the script (functions all begin with lower case "LL"  , and read what each function does.
|
Mickie Mint
Registered User
Join date: 12 Sep 2009
Posts: 24
|
11-30-2009 19:40
Oow i know about scripting and all, but this one is so weird written that i am confused about it....let me find it later on and post it x.x
|
Indeterminate Schism
Registered User
Join date: 24 May 2008
Posts: 236
|
12-01-2009 02:34
First all object-control comes down to either 'this object' or 'another object'. In the former case there are llMessageLinked(), llSetLinkPrimitiveParams() and all the individual prim-setting functions. In the latter there is, er, chat (llWhisper() ... llRegionSay()).
Second there are no additional considerations for control communications between attachments they are just separate objects that happen to be fixed to some avatar.
Finally, a HUD is just an attachment that appears on your screen and no-one else's.
From all that: 1. Your HUD needs to whisper or say each button or whatever when you click it. 2. Your 'other attachment' *ahem* needs to be scripted to listen to the HUD and have all the actual instructions for settings in that object. 3. You will probably want some feedback too, so the attachment will need to chat back to the HUD which, obviously, has to listen and update its display as well.
|