Search the Community
Showing results for tags 'detach'.
Found 4 results
-
I detached the thing the guy sent me (I didn't realize this was going to happen when I attached it) and even turned RLA off, but my avatar is still pregnant. In yellow, it even still says "pregnant by (name)," no matter what I do. I've tried adding the hud again and disabling it, but all it gives me are options for what the baby will look like. And no, there are no other things he sent me. I've rechecked my outfit a thousand times to be sure. Please, help!
-
Hi everyone, I'm a beginner scripter, looking for some advice. I've created a HUD that I am looking to attach to visiting Avatars to my sim, then to detach when they leave the sim. Im wondering how this could be made possible. Any advice welcome, I have experiences set up on my region already just need the attach and detach assist please.
- 12 replies
-
- lsl
- experience
- (and 4 more)
-
Suppose a HUD consists of several prims, I want to make another one above to close the entire HUD, the problem is how to implement it
-
Hello, I made a HUD, and I found a script for detaching it: 1. This is the X prim script (and it works just fine) default { touch_start(integer num_detected) { llMessageLinked(LINK_ROOT, 0, "detatch", NULL_KEY); } } 2. This is the root prim script, but I encounter an error on it: (4, 29) : ERROR : Name not defined within scope default { on_rez(integer start_param) { llRequestPermissions(attached, PERMISSION_ATTACH); } link_message(integer sender_num, integer num, string str, key id) { if ("detatch" == str) { //if (PERMISSION_ATTACH & llGetPermissions()) { llDetachFromAvatar(); } } } } Does anyone know what's not correct?