Jump to content

Scaler Rexen

Resident
  • Posts

    85
  • Joined

  • Last visited

Reputation

30 Excellent

Recent Profile Visitors

552 profile views
  1. Hey DarkEmperor13, shoot me a message in-world and I'll get you set up.
  2. Hello Triexy, if you'd like to shoot me an IM with some details on what you're looking to have made I'll be on later today and I'll let you know if I can assist with your project.
  3. I've personally never used llPreloadSound I've had good success with doing a for loop through all the sounds and using llTriggerSound on zero volume with a .1 sleep between playing them.
  4. I second https://freesound.org that's my favorite site.
  5. Everything you've listed off is possible - With that said you'll need to find some land to where you can place down these objects. More likely than not you'll have to pay rent for a parcel so your build will stay up. Another possibility would be to build your setup and place it at a sandbox (Free land to use but objects are sent back to after a specified amount of time usually 4 - 6 hours) to do your recording. I would recommend not doing it at a sandbox if you were attempting to do this live as you could have random people show up as it's public land and place their own objects. If you're needing props I would also recommend checking out Second Life's Marketplace you can even find stuff free on there as well. Best of luck with your idea it sounds very interesting!
  6. I don't believe there will be a pre-made script that'll do that but if you give a little bit more detail as to what this is I wouldn't mind scripting it for you.
  7. Tier is $95 each month and due on the 17th. Please send a notecard with your offer I will be waiting 24 hours before I accept an offer so please be patient. Sim is completely empty no tenants. I will post when the region is sold no need to ask if I have not mentioned it's sold.
  8. What specifically is not working Can you see voice dots and the green indicator but you're unable to hear them? No voice dot and it never loads? Can you hear others but they can't hear you? I'd recommend doing a clean install. This will clear all cache files and saved settings. That will hopefully fix if the voice dot isn't loading at all.
  9. If it's owned by a linden or a user with the last name Mole there is nothing that can be done about it other than building above / around it. If another user owns it ask them politely if they could move it over some.
  10. Since this is a list you're generating it seems as if it would be easier if you were to just flag what each UUID as an avatar or group. It seems unnecessary to check and ping Second Life's servers if you already know the answer. You could use llParseString2List on each line and check for a flag. AV|5ffbf977-2cf1-4fd1-b531-102e19147d1b GRP|ab550636-5aa2-fb43-153f-110cc0c27ae2 llParseString2List just takes a string and converts it into a list by separators. In my example above the "|" is the separator. so you could check by doing list data = llParseString2List(notecardLine, ["|"],[]) if(llList2String(data,0) == "GRP") { llOwnerSay("secondlife:///app/group/" + llList2String(data,1) + "/about"); } else if(llList2String(data,0) == "AV") { llOwnerSay("secondlife:///app/agent/" + llList2String(data,1) + "/about"); } else { llOwnerSay("Some weird error just happened"); } Hopefully that helps a bit Please excuse any errors as I'm not online and going off memory!
  11. @Jennifer Boyle Grandfathered means it has a reduced monthly tier. Here is more information on it. https://community.secondlife.com/knowledgebase/english/grandfathered-region-pricing-r1408/
  12. Adding additional region sizes could be neat but I can only imagine how many scripts would break because of this.
  13. The thing I love most about Second Life is you can start at any moment. If you're familiar with another scripting language then LSL (Linden Scripting Language) should be fairly easy to pick up. Here is a link to the wiki page. http://wiki.secondlife.com/wiki/Category:LSL_Functions As far as tutorials - I would recommend going onto YouTube and searching up Second Life Scripting Tutorials to find some how to videos. I've considered making some myself but wasn't sure how popular of a topic it is nowadays. If you're every stuck with a specific issue there is also a LSL section of the forums in the Creation Category that you can post your code and your question and they'll give you a hand.
  14. You can run Second Life on a potato. Your graphic configurations along with the specific region you're in will be the determining factor in how much lag you experience. Too many places (and avatars) use poorly optomized builds that once stacked with 1,000 others generate a lot of lag. Even my 1080 ti will get sub 30 FPS with mid graphics.
×
×
  • Create New...