Jump to content

LissomePrey

Resident
  • Posts

    80
  • Joined

  • Last visited

Reputation

13 Good

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. I'm about to dive into the maths of scripting a pendulum (a rod attached to a ceiling at one end but otherwise free to move) and a feather (slowly falling object that can be 'wind blown'). Not asking for anyone to provide a script but has anyone useful hints or pitfalls to avoid?
  2. Someone has asked me for a script to handle a 'scavenger hunt' where participants have to touch various objects to complete the hunt. The participants each have an attachment that gathers the touches. I can't see a way that this can be done without the objects having a very trivial script that announces they have been touched. None of that is hard to achieve, I already have suitable code snippets, but I would like confirmation that I'm not missing an obvious trick that would allow the objects to be dumb.
  3. Going almost way off topic, apologies, thinking about this reminded me of John Conway's Game Of Life Wikipedia Article which probably almost everyone who studied or even worked in IT in the 70s or 80s coded a version of. I have no doubt that there are SL versions of it somewhere but thinking about automata, if an object could rez exact copies of itself, you could have an entirely autonomous version with no central control. As is, I think you could only go semi-autonomous with a central object that you requested to create new objects, though that object wouldn't need to know where any existing cells were. And no, it isn't on my list ... yet.
  4. I just got interested as a friend said they had bought a script and I wondered how difficult they were and then read the wrong sample script off the internet! There is something odd about an object rezzing a copy of itself that is not a true copy but thinking about it, it is probably a good thing to stop griefing as objects that could rez multiple copies of themselves forever would be a gift to griefers, so good that it doesn't work.
  5. I've got a stage further. The TP Box has full permissions for next owner as does the copy inside it. After the first use whilst it appears the new TP Box is the same , the copy inside it has lost Copy permissions for next owner. Not sure if there is a way around that.
  6. I've been playing about trying to understand how teleport on touch works. The approach seems to be that touching temporarily sits you on an object that rezzes a copy of itself and then moves the avi to the required location before it dies, leaving the new copy for the next person to touch. I've done a stripped down test (code below). 1) I rez the object (TP Box) which contains the script and a copy of itself. 2) I touch it and get transported 3) I come back, check that the new object appears to be a true copy, which it seems to be. 4) I touch it and get tranported 5) I come back, check the new object and it has the script but not a copy of itself. I can't see why that happens, any suggestions would be appreciated. default { //set up new copy of the object on_rez(integer start_param) { llOwnerSay("rezzed"); llSetClickAction(CLICK_ACTION_SIT); llSitTarget(<0.0, 0.0, 1.0>, ZERO_ROTATION); } //detect someone sitting so create a new copy ready changed(integer change) { if (change & CHANGED_LINK) { llRezObject("TP Box", llGetPos(), ZERO_VECTOR, llGetRot(), 1); llSleep(1.0); } } //new copy is ready so move with avatar and then die object_rez(key id) { llOwnerSay("object rezzed"); key avi = llAvatarOnSitTarget(); llSetRegionPos(<210.0, 240.0, 2400.5>); llUnSit(avi); llDie(); } }
  7. Using the Catznip viewer ( I am not sure whether other viewers supported the option) I could set up folders within the Outfits/My Outfits system folder, for example one called "Lara v5.3 plus Lelutka" and then keep basic outfits in there, separately from those using Catwa or other heads. This facility has now disappeared, you get an error if trying to create a folder, and the Catznip forum says it was a change in the LL code that has stopped it. Was there a purposeful reason for this or accidental in some other development? Was there a way that it caused harm? If not could it be reinstated at some point?
  8. Thanks. The rlv bit would work fine if the folder went in the correct place but it doesn't. I was hoping there was some symbol I could put before #RLV that forced putting it into the root rlv folder. I could use a viewer that had the root as default for accepting inventory but I can't force others to do that. As my viewer is Catznip and they look after rlva, I'll seek their opinion.
  9. I'm trying to use llGiveInventoryList to set up an rlv folder in #RLV directory. I, and I imagine many others, have a default directory for new items, let's call it "2024 To Sort" Using the line llGiveInventoryList(myId,"#RLV/CARP Test",["Cuff LW","Cuff LA","Cuff RW","Cuff RA"]); The inventory arrives in - 2024 To Sort/#RLV/CARP Test How can I force it into #RLV/CARP Test?
  10. Does anyone know if any designers have a leather jacket very similar to the one worn by Sydney Sweeney in the new Rolling Stones video?
  11. I'm just coming back to doing some landscaping after several years. I am well stocked with trees, rocks etc. but looking for new shrubs, flower fields, outside plants and so on. Does anyone have recommendations for which designers are good in this area these days?
  12. Just a note of the solution. It was caused by being friends but him not being able to see my online status (not sure if I had unticked the box or it was an sl issue).
×
×
  • Create New...