Jump to content

panterapolnocy

Resident
  • Posts

    538
  • Joined

  • Last visited

Everything posted by panterapolnocy

  1. Another day, another picture to spam with in this thread. ~ This time I'm wearing a suit; Who said that only guys can have them? As long as it fits and looks remotely professional... Also, tie colour does fit the eye one. Outfit was assembled quickly (well, it's Linden Library clothes set, slightly modified for my avatar) for a place that asks for formal appearance and doesn't allow anything even slightly casual... well, I guess they didn't expect this to show up.
  2. These, besides the usual "hey, wanna f!#$" and "do you have L$ 10?", are the most annoying for me and happen at least 2 times per month. Bonus points for sniping me with them right after I log in and still rezzing.
  3. As per the http://wiki.secondlife.com/wiki/Limits : ... so, the answer is: it depends, but generally not too many; Try to send items when person is online?
  4. As said during "Meet the Lindens" with April and Oz, for iOS it is like this: Source: https://modemworld.me/2019/06/26/sl16b-meet-april-and-oz-linden-summary-with-audio-and-video/
  5. Have you tried to take a look at http://wiki.secondlife.com/wiki/Making_money or the dedicated subforum, https://community.secondlife.com/forums/forum/312-inworld-employment/ , first?
  6. You may want to play around with http://wiki.secondlife.com/wiki/LlSetKeyframedMotion , some basic example that would produce the effect you're looking for: default { state_entry() { llSetAlpha(0, ALL_SIDES); // Makes prim invisible llSetLinkPrimitiveParamsFast(LINK_THIS, [ PRIM_TEXT, "Meow", <1, 1, 1>, 1, // Set text contents, color and alpha here PRIM_PHYSICS_SHAPE_TYPE, PRIM_PHYSICS_SHAPE_CONVEX, PRIM_PHANTOM, TRUE, PRIM_PHYSICS, FALSE ]); llSleep(2); // Small delay just to make sure that physical shape was applied llSetKeyframedMotion( [<0.0, 0.0, 0.5>, 5, <0.0, 0.0, -0.5>, 5], [KFM_DATA, KFM_TRANSLATION, KFM_MODE, KFM_PING_PONG] ); llSetMemoryLimit(llGetUsedMemory() + 1024); } }
  7. You just cannot start your day without a cup of liquid life popularly nicknamed "coffee", if you plan to do some building and scripting work. With protective glasses so strongly pulled onto your face, that they cause you to see in 4D. And a lot of hammers to shoo away the grid bugs.
  8. I would personally keep two lists, one with UUIDs and one with pre-hashed SHA keys, generated from these UUIDs. Then you wouldn't need to have the loop with llSHA1String() in receiver script but just a regular index extraction with llListFindList().
  9. If you look for some small tips LSL Portal is still the best place to go (like, the tutorial). For example http://wiki.secondlife.com/wiki/LSL_Script_Efficiency would tell you a bit about how to write some basics and http://wiki.secondlife.com/wiki/LSL_Hacks may show you some creative ways to play with the language, but the best place is just to explore the functions reference; Every one of them have tons of interesting caveats and tips. For your lamp see llSetLinkPrimitiveParamsFast() or llSetTextureAnim().
  10. A relatively new music genre, Synthwave, also sometimes called Retrowave; Even if I do remember early 90's I still like to dive into that interpretation of these times and listen for a bit. It's good for work as background music, for games, for relaxing with a book. Speaking of music genres, giving this website a try and exploring a bit may be interesting: https://musicmap.info/ (Synthwave is under "Downtempo") https://www.youtube.com/watch?v=85bkCmaOh4o&list=RD85bkCmaOh4o
  11. If you REALLY need to use llSensor instead of llGetAgentList... try this one. Slightly optimized and potentially without the button limit crash, but you may want to make sure in a crowded place. list gNames; list gKeys; key gVictim; integer gListenerHandle; stopListener() { llSetTimerEvent(0); llListenRemove(gListenerHandle); } default { state_entry() { stopListener(); llSetText("touch me", <1,0,0>, 1.0); llTargetOmega(<0, 0, 0>, 0, 0); } on_rez(integer start_param) { llResetScript(); } no_sensor() { llOwnerSay("cant find targets"); } touch_start(integer nd) { if (llDetectedKey(0) == llGetOwner()) { llSensor("", NULL_KEY, AGENT, 512, PI); } } sensor(integer num) { integer i; gNames = []; gKeys = []; key ownerKey = llGetOwner(); if (num > 12) { num = 12; } for (i = 0; i < num; i++) { gNames = gNames + llBase64ToString(llGetSubString(llStringToBase64(llDetectedName(i)), 0, 31)); gKeys = gKeys + llDetectedKey(i); } stopListener(); gListenerHandle = llListen(6666, "", ownerKey, ""); llDialog(ownerKey, "Select your target", gNames, 6666); llSetTimerEvent(60); } timer() { stopListener(); } listen(integer channel, string name, key id, string message) { stopListener(); gVictim = llList2Key(gKeys, llListFindList(gNames, [message])); state stalking; } } state stalking { state_entry() { stopListener(); llSetText("", <0, 0, 0>, 1.0); llSetTimerEvent(0.1); llSetMemoryLimit(llGetUsedMemory() + 5120); } timer() { vector position = llList2Vector(llGetObjectDetails(gVictim, [OBJECT_POS]), 0); if (position != ZERO_VECTOR) { position = position + <0, 0, -2>; if (position.z < 4096) { llSetRegionPos(position); } integer maxAttemptsPerMove = 25; while (llGetPos() != position && maxAttemptsPerMove > 0) { --maxAttemptsPerMove; llSetLinkPrimitiveParamsFast(LINK_THIS, [PRIM_POSITION, position]); } } } }
  12. I am generally very open and tolerant, not too many things can throw me out of my internal balance as I'm a pacifist person, but when someone puts something like "I'm claiming the right to pass your IMs to anyone I want to, and you accept that covenant with me regardless of what SL ToS says if you send me a message" in profile as one of their picks, I suddenly want to tie them up, cover in honey and stick onto a pole in the middle of ants' nest. ^^ And if its THEM who start the conversation first... oh, my. Describing my thoughts its too brutal for a G rated post. Besides that, I do squint my eyes and shake head at the usual "hey, nice avatar, wanna find a poseball?" thing, that's not really a "pet peeve" though. Oh, and, sound gesture overuse in some places ("iiiloooveeethiiiissstuneeeeullalalaalaaaa")... it just hurts my brain and ears; Luckily, one tickbox in preferences resolves that problem.
  13. My life was heavily filled with Commodore64 experiences at its beginning , so I do enjoy the sound of the SID chip very much. I do often, like today while cleaning up my home, play this one: "The Epic Commodore C64 SID Collection".
  14. Being rather closed and reserved person in real life didn't help me much with meeting new people, so I've turned my head to online communities. Yet, role-playing discussion boards or chatrooms just felt... dry. Sure, imagination was still needed and literate descriptions never were a problem, but it was all just not as expressive as I'd like it to be. Despite all the effort it was kinda limiting; Some visual aids would be welcomed. Then, one day, a friend from one of these poked me with Second Life registration webpage; My first contact with the grid was not too "improving first life", as I've basically had no idea what to do and while I was exploring the possibilities of camera usage in some forest place all alone on my own - suddenly someone appeared in front of me and said "hi there". I was so startled, that I've instantly logged off with an eep, removed the client and deleted the account. Yep, I was so odd back then! And returned to sit in the hole I've crawled out from, knowing I'm not ready for such revolution - yet. I've re-registered after few years... decided to do this right that time... meeting people, visiting places, turning from a scaredy-cat, slowly, into a curious one. What I've learned from SL also had direct benefits in RL (well, maybe not all the adult stuff I've seen on the grid ~). I've joined few roleplaying and coding groups, started to figure out how to push some life into a freshly rezzed cube - I've become a scripter, which was a nice after-hours exercise for my real life job, where I've also been (and am) programming. And here I am today, even occasionally using my voice in-world and writing this post - something I would not decide to do 10 years ago. I've met many very nice people, few of them are now close "long distance friends" I can count on inside and outside of SL, few of them I've already met in real life (yay for planes and trains). I would not be able to do all of this in relatively short timespan without Second Life and its possibilities, I think - and my life would look totally different right now. Better, worse? No idea. But I like where it is at the moment, and what person I am.
  15. Aaaand the last entry of "Meet the Lindens" event, the meeting with skilled people who make all the cool stuff for Linden Department of Public Works, the Moles. ^^ Stage was completely full with blue name tags, it was hard to fit them all in the screen, as shown in the picture attached below. ~ Below are also recordings of the conversation... keywords: "dinosaur poop in PaleoQuest". "SL4Live - TV" live-stream: https://www.youtube.com/watch?v=kgQ78sEby20 My own recording: https://www.youtube.com/watch?v=-hsrk-ovWm0&list=PL607B7699594F77EA
  16. Another day at SL16B, another "Meet the Lindens" thingy. Thursday, so a talk with Xiola (Lead Community Manager) & Strawberry (Marketing Specialist). Again, by using the audio stream instead of voice. At the moment there are only two of videos available on-line on YouTube to watch or listen to... or I'm just blind / cannot search properly. "SL4Live - TV" live-stream: https://www.youtube.com/watch?v=nckFq3Z9jRw My own recording: https://www.youtube.com/watch?v=ShyUBSjAg3Q&list=PL607B7699594F77EA As for the attached image; It's just a small "after-party". My old laptop barely did not explode, there were just too many people around (130+ I believe, most probably more) - that's why I rarely, if ever, record audiences and try to keep camera static... Also, everyone wants a bear! :3 "Meet the Moles" today at 2 PM SLT... ~
  17. "Meet the Lindens and Moles" - this one was with Ebbe. And Patch. And few more Lindens / Moles scattered around the audience. Instead of voice service the audio stream was in use, so no dots above heads are visible. There are few places to listen / watch these from. And there may be more, these are the only ones that I've been able to find. ~ Official Second Life channel: https://www.youtube.com/watch?v=-rTRYAprz5M "SL4Live - TV" live-stream: https://www.youtube.com/watch?v=6u2Mt3t0FY8 Ciaran Laval: https://www.youtube.com/watch?v=8sgtxRnauYI Luca: https://www.youtube.com/watch?v=uweIT0UpfwY My own recording: https://www.youtube.com/watch?v=c54NQre4IDQ&list=PL607B7699594F77EA ... so, it was covered pretty nicely, by various sources. ^^
  18. Look at me, now look at your av, now back to me. I'm on a chair. ~ I spend too much time in/on chairs lately... when SL16B finishes, I'm going to take a walk around few nature-themed regions.
  19. My avatar does represent my digital self pretty well, personality wise and according to imagination - I am a furry and was before joined Second Life. My character evolved with me for over 20 years in total, 8 in SL - Not only that, but uses the clothing I do use everyday as well behind the screen, so also fits with appearance.
  20. https://www.youtube.com/user/PanteraPolnocy / https://www.youtube.com/channel/UChturH5PPNoRhlSXf6I_YEQ Mostly Second Life, mostly Third Party Viewer meetings recordings. Easier to navigate by Playlists. ~ SL specific: https://www.youtube.com/playlist?list=PL607B7699594F77EA
  21. W dniu wczorajszym Lindeni oficjalnie potwierdzili, że podnoszą limity dostępnych prim dla wszystkich typów działek z tym, że zaczynają od mainlandu, a za 2-3 miesiące zaczną zmiany wprowadzać również na regiony prywatne. Jako, że mam działkę 512 m2 na mainland mogę potwierdzić, że limit skoczył w górę ze 117 do 175 prim. Bez dodatkowych opłat. ~ Parę linków i nagranie: https://vimeo.com/189520045 / https://www.youtube.com/watch?v=YZr6VwBDlVg https://community.secondlife.com/t5/Featured-News/Go-Premium-for-50-Off-amp-Enjoy-Our-Newest-Perks-Plus-an/ba-p/3078355 https://designingworlds.wordpress.com/2016/11/03/dont-miss-the-designing-worlds-special-today/ https://modemworld.me/2016/11/03/lab-reveals-li-prim-allowance-changes-in-second-life-in-full/ https://www.slartist.com/designing-worlds-dw320x-linden-lab-special-edition_317145976.html https://slnewser.blogspot.com/2016/11/the-big-change-mainland-sims-possibly.html https://www.youtube.com/watch?v=HN2dJS3r-Yo
  22. Actually, you might just ask me directly inworld. Or read the description... so far the only source of taur avatars (felitaurs, non-centaurs) I've found is the small store of Gryphe Padar - if you have question or want to see me inword (yes, these hilarious hind legs movement, bu who cares! )... just do it. My username is Panterapolnocy Resident.
×
×
  • Create New...