Jump to content

Thoth Mason

Resident
  • Posts

    23
  • Joined

  • Last visited

Everything posted by Thoth Mason

  1. Firestorm Viewer 6.6.8.68380 (most recent version, happened on prior version too) Windows 10 Suddenly, and without warning, all of my logged-in friends will vanish and show as "offline". This happens in bulk. The SL web site shows them as online, so this is a server/viewer issue. It doesn't matter if they're on the same region/sim or not. If I receive a DM from them (or send one) that one person will now appear as logged in -- I'll get the "user x is online" message as though they'd logged in. Monetary transactions will bring that person back too. To get them all back, I need to log out and log back in again. This has been going on for about a month. I have removed/reinstalled Firestorm. There's no other software running, really. Suggestions?
  2. Stay away from NFL/NewFound Land Estates. They're currently imploding and just screwed us out of a month's rent because the owner left, the new people didn't get the money, blah, blah, blah.. drama. If you don't want your sim closed out from under you because they're gone bankrupt, rent from someone else.
  3. Let's see.. day 4 and my animations are still being replaced nightly. This isn't fixed, Linden Labs. Not by a long shot. Either Ebbe is full of, or being fed a pile of, bull**bleep**.
  4. Vista Barnes wrote: Linden labs should send an email when they replace content. There should be a list of the content replaced with the original animation names. That will help me to identify and report it to LL and also to provide a temporally solution. Nope, no e-mail from the Labs and yes, it was Vista animations I lost. Probably from the Dangerous Man pack bought many years ago. I've opened a ticket with LL, but they're confused as to what the problem is. I pointed them at this thread, but no reasonable answer has come out of that.
  5. My Vista animations from years ago got IP Replaced two days ago. I bought a walking animation from Akeyo yesterday afternoon... I logged in this evening, and it was IP replaced. I'm completely and totally pissed off, and there's nowhere to complain to. Seriously, WTF. Linden Labs? How? What exactly do I report? I don't have the old item names...? Vista? Akeyo? They didn't do anything, except maybe sold animations that got flagged DMCA. Maybe they're reselling solen items, how the hell should I know?
  6. I lost about 15 from Vista -- the only place I've bought them from before yesterday. Male animations, from maybe 4 years ago. I have no idea the names. If they come back, they come back. It was an expensive day yesterday to replace even some of them..
  7. I have a prim that I'd like to move along it's own (local) X axis. Let's say it's an animal, when I touch it I want it to move forward. I have it's position with llGetPos(), it's rotation with llGetRot(). If I want to move along the region's X axis, well that's easy: vector pos = llGetPos(); pos.x = pos.x + 1; llSetPos(pos); But if I rotate the prim, it still moves along the region's x axis (sideways), as I would expect but not what I want. What's the method for combining the rotation with the position to say, "move *forward* 1 meter"? This has to be simple, but I've been googling this for a bit, and I'm missing the right keywords here. Lots of information about moving linked prims relative to the region or the root, but I actually just want the root prim to move.
  8. The ray is a good idea, but I was looking for something a bit more slower and missile like. One thing I didn't mention is that I'm specifically avoiding mouse-look. Much like a platformer game, it needs to be viewed side-on and from a distance. Thank you.
  9. All right, it looks like I'll stick with a physical missle. It's supposed to be slow moving, and I'm dreading interference from things like wind, other physical objectsn nearby, and frankly being manipulated easily by the user. Thanks
  10. I'm planning a shooting gallery type game, and am struggling to find collisions that work. What I'd like is: * A root prim (backdrop) with linked prims (targets) attached to the front of it. * A "missle" prim to be thrown/fired at the targets. I'm trying to get the linked prims to handle their own collision events. The only combination that seems to make any sense at all is: * Root prim and linked prims are non-physical non-phantom. * Missle is physical. Anthing else and the linked prims don't get a collide() event. Is there any way to do this with a non-physical missle?
  11. Okay, that may be the stupidest post I've made yet. Sorry about that, I had a window open (script) in front of the contents tab and didn't notice they were all renamed after I dropped the folder in there. Then went off to read the function description and... D'oh. Thank you.
  12. I have a prim that contains a script and a bunch of items, all identically named. They are transfer but no copy. When the prim is touched, I want to give ONE of the items to the toucher. If I understand right, llGiveIventory() will give the entire bunch of items with that name, right? Other than renaming the items to be unique -- really, not what I'd hoped to do -- how can I give one of those items away?
  13. I'd be happy to plonk down cash for good brown hair (on the short side) that's greying a bit. Not blonde highlights, but honest grey. But every hair designer in SL, as far as I can tell, assumes that if you've got greying hair you must have started off with black hair. I realize that it's easy to just take black hair and start fading it to grey but designers... this happens with colors *other* than black. Red-headed man or brown-haired men don't go grey, right? You bet their ass they do. A few years ago, I wound up hacking up a mod hair just to get some grey, and I'd like to wear something a little bit more professionally done. Who's got stuff like this?
  14. Hmmm.. so unless I want to actually hack up a TPV to play with this, it's not much use. There's potential for much better inventory management in SL, thought there might be an opportunity here. Thanks though!
  15. I wouldn't normally open with such a vague question but I stumbled across this LL Inventory API Some of the other API's listed on the page (World, Seach, Snapshot) have URL's and are usable from my browser window. The Registration API has a whole bunch of information associated with it. The Inventory API has.. almost nothing on how it's called, who can call it, what addresses are used, etc.. And the function calls themselves ("FetchInventory2") are one-word googlewhacks.
  16. I'm told that when you delete an inventory item that's part of an "outfit" that you're supposed to get a warning. In fact, I've seen this warning demonstrated by others. I don't get the warning. SL will happily let me delete items that are part of an outfit. I don't dare run a purge now, because I had assumed the warning would have prevented a mistake... Does anyone know why I wouldn't see this warning and other friends do?
  17. You are indeed right, this was a flat surface with the other faces hidden. The longer technique you presented in your post didn't work. For some reason even after double-checking my typinh the puck only moved in one dimension. (left-to-right along the top of the larger prim). Not understanding the technique fully, I wasn't able to debug it. I tried the technique presented by Cerise after adjusting the linkset to make the flat surface the root prim and it worked fine. I just had to re-organize some other scripts after the root-prim change. I would have liked to have kept something else as the root prim, but that's life. Thank you everyone.
  18. This looks great. Since neither prim is the root prim, I'll try the second option when I get inworld later. Vector math isn't my strong point here it'll take me a bit to completely understand. What's this portion for: -0.5*gSizeA + Thank you.
  19. I have two prims in a linkset, let's say a large flat surface (cube, flattened) and a small sphere. Originally, these were two prims: when I touched the surface of the flattened cube I can get the touch position from the cube with llDetectedTouchPos. Then I just set the llSetPos of the sphere to that position. No fuss no muss. Then I combined these two into a single prim (both children of a common root), and I'm in all kinds of hell. llDetectedTouchPos returns region coordinates, and I can't move the child in region coordinates. I've tried transforming region to local coordinates to the child prim but I'm probably doing it wrong. I thought llDetectedTouchST would help, but: vector touchedAt = llDetectedTouchST(0); llSetLinkPrimitivesParamsFast(sphereNumber, [ PRIM_POSITION, touchedAt] ); These don't even seem to be operating in the same coordinate space. tldr; Move linked prim B to location touched on linked prim A (neither is root prim). Can anyone lend a hand?
  20. Can someone please help me remember the name of the in-world tool to create sculpties... All you had to do was arrange the prims the way you wanted, and then it would (with the help of a web site if I remember) generate the corresponding sculpt map from that. I've completely forgotten the name. Clues?
  21. Guys (or girls!)... listen up... Valentine's Day is coming. (And birthdays and weddings and...) For my girlfriend's birthday this week, I was looking for something really over the top to do in SL and found it based on a recommendation from a friend. I approached Franks Place -- a venerable name in SL -- and arranged a private dinner for two. This is a private sim, so if you're expecting lag or lots of local chat, you're not going to get it. In our case, we were met at the door by the hostess and seated at a table above the dance floor. Our waitress was friendly and served us a 5 course meal (with drinks). She takes care of running the menus, and it's all handled with grace and style. Dinner takes about an hour. After dinner, we went to the dance floor as my girlfriend's family joined us for an hour of dancing. They were all greeted by the hostess as well, and escorted to the dance floor. (More time could have been arranged, but we had RL constraints.) It's an experience that we'll never forget. If you want to try this it will cost a few Lindens, but it's really worth it. Contact Nanceee Sinatra (yes, three e's) and tell her Thoth sent you. (I get nothing from this other than wanting others to share in an experience that was so much fun.) Some snapshots:
×
×
  • Create New...