Jump to content

Wulfie Reanimator

Resident
  • Posts

    5,738
  • Joined

Everything posted by Wulfie Reanimator

  1. "Standard scripts" work just fine. In the touch_start event, when the script detects that the "detach" button has been clicked (how ever you check that), you just call llRequestPermissions(PERMISSION_ATTACH) and then, in the run_time_permissions event, you call llDetachFromAvatar. touch_start(integer n) { if (button == detach_button) { llRequestPermissions(llGetOwner(), PERMISSION_ATTACH); } } run_time_permissions(integer perm) { if (perm) { llDetachFromAvatar(); } }
  2. Since you only featured the avatar's face as an example of "a child avatar," that's an entirely too handsome adult of a facial structure, same goes for the skin -- those are some glorious sideburns for a 10 year old. You'll want to size up that head as well, it's way too small compared to the shoulders, even for an adult avatar.
  3. It's not even any DRM. If *you* log in to any webpage through SL media, only the URL is shared to other people -- but they won't get logged in. This is because all viewers have their own and entirely separate instance of that webpage. If you scroll on a page, the other people won't see it. If you pause a video, others will keep watching.
  4. Can you include the full code regarding the "driver permission" part? Your explanation is very vague.
  5. Please, when posting code, click the little <> icon just above the text box. It'll open a little pop-up where you're supposed to put your code. You can do this multiple times to have clearly separate blocks of code, for example: code and code Edit: I actually didn't know you could just select and convert.
  6. Watching a 720p video on Youtube for an hour costs you about 1.2-1.5 GB. When it's 1080p, you're looking at 2-3 GB.
  7. I went there for a visit. The sim itself is in awful condition, a better connection isn't going to save you there. I went there too, it's actually less "graphically intensive" than Fogbound, based on the render info built into the viewer. It had less people, which is one big contributor for sure. For reference (for everybody, even if these don't mean anything to you in particular), left is Fogbound, right is Galas Galadhon. TLDR: Everything is worse in Fogbound, not to mention the Scripts Run % was around 5-10% compared to Galadhon's 90-100% This could be totally unrelated to your bandwidth. If the sim is struggling to run scripts, a good connection won't save you. P.S. About the "7 mbps," are you sure it's not MBps (or MB/s)? As in, with a big B? Either way, I don't get more than about 1.3 mbps of bandwidth usage when teleporting to a new sim. 7 mbps should be more than enough to support that load, and then it's around 50-250 kbps (0.05 - 0.25 mbps) to keep things going after everything's loaded.
  8. Before we can should even begin to answer the original question, we need to know what kind of "lag" we're talking about. Low framerate? Is your viewer looking like a choppy slideshow? No amount of bandwidth can fix that. Delayed actions (assuming the Sim isn't lagging)? It takes half-a-second or more to move/jump? No amount of bandwidth can fix that. Bandwidth is literally the "width" of the lane that's bringing you data from the internet (i.e. how much you can receive at the same time), but it has no effect on "latency" aka the time it takes for one piece of data to be communicated. Grey textures, mesh not appearing, animations not working? Yup! This is what more bandwidth can help with. Latency doesn't matter when you just want to download big chunks of data, like textures.
  9. Small disclaimer: This is a little group project I'm working on outside of SL. I think it's interesting enough to share. You're given a list of 1-26 Tetris pieces (aka Tetrimino). (Valid input is assumed.) We get the Tetriminoes from a text file, where a 4x4 grid contains one piece. Basically a string. This isn't important for an SL implementation, just context. What is the smallest "square" (holes allowed) that these Tetriminoes can fit in? Rotating the given pieces is not allowed. Each piece should be as close to the top and to the left as possible. For example (ordered A to H): ...# ...# ...# ...# .... .... .... #### .### ...# .... .... .... ..## .##. .... .... .##. .##. .... .... .... ##.. .##. ##.. .#.. .#.. .... .... ###. .#.. .... Results in: ABBBB. ACCCEE AFFCEE A.FFGG HHHDDG .HDD.G Additionally, we prioritize the order that the pieces appear in the input file, when the smallest solution allows it. For example: ...# ...# ...# ...# .... .... .##. .##. Results in: ABB. ABB. A... A... This is a very short and simplified version of the full project. I could add more specific requirements but LSL is what it is. Here's some reference solutions I created by hand for 26 pieces of the same type. I at least wasn't able to find a smaller solution for any of them.
  10. Assuming you mean RLV... it doesn't just work with Firestorm or Catznip. A moderator did an oopsie, most likely.
  11. There have been a few times where I've been interrupted by (short) random commercials while I've had media off (I never have it on by default). Those times, the commercial audio actually plays through SLVoice.exe (Firestorm), and it's the weirdest thing. It's always a woman's voice but the audio is so low I don't actually know what the commercial is about. The audio quality is too good and the manner of speaking is too official to be just a random person, and I always rush to check if any avatars are on the sim.
  12. This is what I do, but it's not just about laziness! I prefer having code that's not very "wide." Lots of nested scopes is messy to read, eg: state { event { if owner { if other condition { if other other condition { // code; } // code; } } } } vs state { event { if not owner; if condition { // code; } if other condition { // code; } } }
  13. This works just fine: default { state_entry() { llRequestPermissions(llGetOwner(), PERMISSION_ATTACH); } run_time_permissions(integer perm) { if(perm) { llAttachToAvatarTemp(ATTACH_HUD_CENTER_1); } } } So does your script when I copypaste it from here.
  14. In a purely logical sense, I agree. But when I think of all the actually inanimate objects I've genuinely cared about, it probably wouldn't be that simple. Besides, a lover I can just disable and throw into the basement whenever I'm not in the mood for interaction, without consequences? Yes please!
  15. Not really. Materials don't create a glow (luminosity) in any situation, unless you meant how reflective of light (glossy) it is. In the right screenshot above, the light is coming from behind the camera and hitting the back directly, causing more intense lighting while hiding the seam because both the surfaces of both objects that we see are receiving light from the same direction.
  16. Simple answer: The seam exists because the head and body are separate objects. The back of the head is in shadow because it's the under-side of the head and light is above. The neck/shoulders are bright because they are the top-surface of the body and light is above. The head does not cast a shadow onto the body unless you have dynamic shadows enabled.
  17. Is there something I'm missing since the pre-release of BOM? For asymmetrical tattoos, you would wear the base skin, which is clean, and then add a universal tattoo layer for either the left (only left slot) or right (using tattooed upper and clean left slot) arm texture. Or you can do it in reverse, using tattooed skin and adding a clean cover with layers. In either case, this must obviously be set up by the creator. It was never implied that literally anyone can take any skin/tattoo and make it asymmetrical. @Silas Merlin While LL owns the texture data itself, I don't think they own the creative IP. Even if they did own even that, LL has never made modifications to existing content to provide it to end-users.
  18. Accepting the Tilia TOS has no practical effect on anything you do, if you do not sell L$.
  19. It's either intentional roleplaying, or unintentional roleplaying...
  20. imbecilic* What's ridiculous is the tone and the apparent amount of vitriol you have towards people whose primary opinion seems to be "I don't care, why do you?" which is about as neutral as you can get. This is from the blog post you linked: As far as I know, "network providers" don't provide pizza, and SL doesn't run on a cell service. That doesn't seem to satisfy your question because I know you're still very paranoid about "the cloud" as you have little understanding of it, which is fine as you are a non-technical person. But because you are a non-technical person, giving you the full answer might not satisfy you either, because you're hung on the scary "cloud" term. Lots of different things are "the cloud." There is no one "cloud network" type, the term is ambiguous and useless without proper context. Not everything has to be on "the cloud(s)" for SL to work. If you can log into any computer at your workplace/school (especially in separate buildings) and instantly get all of your files on the desktop, that's "the cloud." If you remember SL Go, that was "the cloud." (Same goes for OnLive or any game-streaming service. Cloud gaming.) If your company has ANY software that runs on a remote server, not on the same computer, that is "the cloud." This means that even if/when LL had its own server farms, they were "the cloud." Linden Lab has been using AWS for a good while now, that is "the cloud." (<-- This is the answer you want, even if unrelated to the actual problem.) A presentation of this move was done back in 2017. They've also made blog posts related to AWS even before that, but that post is a different "cloud." "The cloud" is just "a remote server that does something for you." The internet as a whole is "a cloud."
  21. Other definitions include: "A trivial fancy adopted and pursued for a time with irrational zeal; a matter of no importance, or an important matter imperfectly understood, taken up, and urged with more zeal than sense; a whim; a crotchet; a temporary hobby." "A temporary fashion, notion, manner of conduct, etc., especially one followed enthusiastically by a group." "A style or activity that suddenly becomes popular but which usually does not stay popular for very long." So: Money trees, camping, etc. LL disincentivized them for non-legacy traffic results. New avatar releases during events, like those at Gacha Guild. The front of the vendor is full of them all day through the event, but finding one in "the wild" a couple months later is even relatively rare. The gacha system in general. I would also want to say "no-modify products in general" but I don't think that's been very temporary...
  22. What if you set your windlight to something flat like CalWL? That looks like a regular lighting issue, not a texture problem.
  23. Also remember to lower your settings on the viewer that isn't taking the pictures or minimize the window so rendering slows/stops.
×
×
  • Create New...