Jump to content

HSHPrincessofCarlisne

Resident
  • Posts

    141
  • Joined

  • Last visited

Everything posted by HSHPrincessofCarlisne

  1. Hello, everyone; I'm looking for hair that partially covers the face, hair that covers one eye. I usually have the .:EMO-tions.. *THEA* hair which I have worn for years, along with a few others. https://marketplace.secondlife.com/p/EMO-tions-THEA-FATPACK/9253306 I was wondering if there was anything similar, but not necessarily long (although a similar length would be nice) that covers the face for a mysterious, demure look; - Charlotte Sinclair
  2. I'm not quite sure what you mean; do you mean the array has 2 redundant actions and one needs to be removed? This occurs twice in the line, or the "array" that you mentioned; one at the start and one and the end - that's 2 in total; And this occurs just once, in between; that's 1 in total, not including the two I just mentioned above. As a whole; this is the entire line you mentioned. Are you saying that one of the "actions" is interfering and conflicting with another and I only need one of them? These lines appear tied to every animation that plays; drawing, firing, reloading, slinging; there's one of these lines next to every one of these animations; which animations in particular would this line and the two "actions" in the array be interfering with? Removing the lines that were mentioned throughout the script, I've gotten the weapon to reload and fire without any mesh disappearing, it seems I can sling the weapon and it will disappear from my hand and appear on my hip. Now all that's left is for the slung weapon prim on my hip to disappear entirely (not just the root prim, leaving any other linked prims visible) when I draw the weapon and the drawn weapon prim to appear in my hand, rather than being invisible.
  3. integer a=6; integer rl=0; integer v=400; rel() { llSetLinkPrimitiveParamsFast(1,[PRIM_COLOR,ALL_SIDES,<1,1,1>,0]); rl=1; llStartAnimation("NV_Pistol_Right_Reload_01"); llSetTimerEvent(2.15*llGetRegionTimeDilation()); llPlaySound("9eb5191c-f402-0bdb-1f2a-934fc2fcd98f",1); } string help="/me :HELP MESSAGE: All Commands are on channel 1. Commands are not case specific! ''r''/''rel''/''reload'' - Reloads the weapon's magazine, and regains controls if lost. ''vel:###'' - Sets the velocity of for physical rounds Not sure if this is relevant, but; { if(l&e&0x40000000) { if(a>0&&rl==0) { string anim=llGetAnimationOverride(llGetAnimation(llGetOwner())); if(anim=="Chaos_LasPistol_Right_Aim_01")llStartAnimation("Chaos_LasPistol_Right_Recoil_01"); if(anim=="Chaos_LasPistol_Right_AimCrouch_01")llStartAnimation("Chaos_LasPistol_Right_RecoilCrouch_01"); llTriggerSound("6f6fb259-126f-2600-5089-2968c821cbcf",1.0); llSetLinkPrimitiveParamsFast(1,[PRIM_COLOR,0,<1,1,1>,1]); --a; llSleep(.04*llGetRegionTimeDilation()); } if(a<=0&&rl==0)rel(); } } From lines 99-121; } if(m=="sling2"||m=="s2") { llPlaySound("bcf6df91-c30b-b688-0c0b-79a929ffd240",1.0); llSetScriptState("*Anim v2.0",0); llSetScriptState("*",0); llSetLinkPrimitiveParamsFast(-1,[PRIM_COLOR,ALL_SIDES,<1,1,1>,0,PRIM_LINK_TARGET,1,PRIM_COLOR,ALL_SIDES,<1,1,1>,0]); llResetAnimationOverride("ALL"); llReleaseControls(); state safe; } } timer() { if(rl==1) { rl=0; a=15; llSetTimerEvent(0); llSay(-9872,(string)a); } } } From lines 124 to 144; the end of the script; state_entry() { llListen(1,"",llGetOwner(),""); } listen(integer c, string n, key i, string m) { m=llToLower(m); if(m=="draw2"||m=="d2") { llSetLinkPrimitiveParamsFast(-1,[PRIM_COLOR,ALL_SIDES,<1,1,1>,1,PRIM_LINK_TARGET,1,PRIM_COLOR,ALL_SIDES,<1,1,1>,0]); state default; } } attach(key id) { if(id!=NULL_KEY) { llListen(1,"",llGetOwner(),""); } } }
  4. Thank you! 🙂 Now the gun isn't disappearing when I reload or fire the weapon; I've noticed that this line appears several times throughout the script; it accompanies each animation; reloading, firing, drawing, slinging. I've taken out most of the instances of this line and the weapon now disappears when slinging, seeming to work along with the separate script in the slung weapon object. But the weapon still becomes transparent when drawing, even if I took out the instance of the line tied to the draw animation.
  5. Thank you; that does make sense, although I have noticed some creators on the marketplace all using the same scripts; I got these from some full perm weapons I purchased - there wasn't any notes on usage rights and it seems some of these creators have taken from other creators in making their own products. I've compared how the same scripts from other weapons made by other creators work and it doesn't seem like there's any parts that are hidden during actions such as reloading or having a magazine detached; if there are, they've hidden it well - perhaps the magazine itself is the root prim. On the other version of my mesh model, the root prim is the the small hammer that sticks out of the slide of the handgun, which disappears when I fire the weapon. Should I post the whole script or parts of the script here in this topic? EDIT: Upon closer inspection, it seems on the other creator's weapons, the invisible muzzle flash prim is the root prim that disappears; I'm not sure what to do; in my model, the entire gun is the root prim, except for the tiny visible muzzle prim (not the muzzle flash) attached to it.
  6. Hello, everyone; 🙂 I've been working on a handgun for a while now; initially I had issues mapping the textures to the mesh model I uploaded, but I was able to resolve it; However, when I put in some scripts, projectile object and animations to make it functional, most of the mesh disappears (the root prim) whenever I reload the weapon; it becomes transparent - I have to manually set the transparency to 0% again. At times this has happened upon putting the scripts into the mesh and depending on the version of the scripts I use, the root prim can stay invisible and then become visible when firing the weapon and then instantaneously become invisible again. Sometimes a single textured face of the root prim appears and stays, while the rest of the mesh model is transparent. All of the scripts, animations and mesh model seem to be full perm. The other linked part of the mesh model highlighted in blue seems to always stay visible no matter what; I've tried putting in the scripts into the linked part but this does not solve the issue and the mesh becomes transparent again. With this mesh model, I can't seem to unlink the mesh parts, although the root prim is made of a few different individual parts. In some versions of the scripts, there's a companion script that goes into the slung object when slinging and drawing the weapon, but the drawn object is held in the hand is still transparent and the slung object doesn't disappear when the weapon is drawn. I've tried using the scripts with other prims and mesh models, and it works correctly as intended; I have a completely separate and different but simplified version of the same mesh model with a higher number of individually linked parts and it works fine with that. I'm not sure why the scripts don't work well with this particular mesh model and I'm having difficulty working out why; I'm definitely not a scripter in any sense of the word; I'm an amateur creator and I would very much appreciate some friendly assistance on this issue. I've attached some images. Sincerely, - Lotta Sinclair
  7. Eye clamps - Those things that hold open your eyelids open... has anyone made one in SL before? 😜
  8. Hello, everyone; So, I have a wearable/attachable car I've been working on, but the wheels are static; they don't turn. I have another car from a creator on the marketplace which is also wearable and the wheels turn when you move; I was wondering if anybody knew of any rotation scripts I can put in wheel prims that trigger when movement is detected. I don't have any scripting experience besides putting scripts along with other items inside objects and using the ACS vehicle operating system to make rezzable, drivable vehicles. - Charlotte Sinclair
  9. Thank you everyone for your suggestions; I appreciate your efforts; Josephine, incidentally I happen to already have that trench coat, the Eloise in Herringbone, although I am certainly looking for coats with a fur collar trim, separately. I might make a separate post for that at some point in time. I very much prefer more form fitting, fitted coats close to the leg, in line with my pencil skirts and pencil dresses rather than something flared, flouncy and full, but those pants and boots are on point! The boots I'm not too concerned about, I have a few pairs. I'm mostly looking for jackets; blazers and hacking jackets, in tweed, herringbone, check, plaid, or what have you, that would work well with those kinds of pants and with a skirt. I happened to purchase one last night but it seemed quite old and plain, and the fitmesh didn't seem to work too well with my skirts. Alas, I wasn't able to find any feathered hats to add that final touch to an outfit like that, but I guess I'll try some fedoras in earthy tones and add one myself, if that works.
  10. Thank you, Josephine. Incidentally I have been looking for a coat just like that, separately! But yes, it's the tweeds, plaids and tartans, the men's style blazers for women in earthy colours (preferably closed) I have my eye on today I should probably look for a feathered hat too...
  11. Yes, as I've said there's plenty of equestrian attire but I've found there to be far fewer items with a similar theme outside of the equestrian setting. With the jackets, have you seen many that look like the ones in my photos that include something worn underneath it? There's a lot of outfits that are open jackets that leave a good part of your torso exposed without pairing it with a top beneath it, which can be very challenging with mesh, which leaves appliers and system layers as the other solution. Once I find some good jackets, I'll look for plaid leggings or skirts, although most of these outfits aren't made with skirts in mind, so there can often be a lot of issues with clipping. Some of the first few in the 2nd row look somewhat tempting, as does the hacking jackets from the equestrian shop, Ladies' Pleasure.
  12. Hello, everyone; I was wondering if there were any stores, items or Flickr pages for SL that were good for an English countryside theme or setting; I see quite a few sims with this setting, but I have quite a bit of trouble finding items of this style - I invariably end up in the equestrian stores or find a tweed or tartan blazer or skirt every now and then which only vaguely fits the theme. The jackets can be particularly difficult to find; I'm looking for a slightly more masculine style for women. I wear pencil skirts daily as part of my style; it's difficult to find matching skirts, but I could go for breeches or tight pants/leggings like in the photo. Personally, the closest I've found are these items, but I'm not looking for something cute in particular or anything that overtly screams "equestrian". That being said, I'm very much about power dressing; a hunting/shooting style outfit would do nicely. https://marketplace.secondlife.com/p/ZenithVintage-Coat-with-Leather-Bag-Choco-Maitreya/14445513 https://marketplace.secondlife.com/p/Alex-Open-Chester-Coat-Wool-All/6657975 Thank you, - Charlotte Sinclair
  13. Hello, Yes, I did check out Vintage Faire and I have heard of Lux Aeterna and their brand L & Co. Clothiers. I'm looking for pencil dresses closer to knee-length rather than floor-length and generally more form-fitting throughout - especially below the waist, otherwise it's more of a sheath dress or an A-line dress. The bits of detail I mentioned just helps to distinguish between an outfit and a sea of plain, generic pencil dresses as is often the case on the marketplace 😉 Besides Valentina E. I haven't really seen anything in SL quite like the vintage-inspired looks from those models I mentioned.
  14. Hello everyone, I have followed vintage fashion models such as Idda van Munster and Rachel Ann Jensen in the past and I was wondering if there were any dresses in SL like the ones in the collage photo I attached. Pencil dresses are a staple in my wardrobe, but a lot of the vintage dresses I have found in SL on the marketplace and in-world stores tend to be quite plain and generic, with just a few shining exceptions. I tend towards the 1950s high-fashion looks you see models like Sunny Harnett and Dovima wear in things like vintage fashion magazines and photos rather than the rockabilly looks that people conjure up images of when the '50s are mentioned. I was wondering if there were more out there in SL that I haven't found; a lot of it tends to be decidedly modern-looking rather than something with a distinct vintage flair. Some examples from Valentina E. comes to mind, but most of the outfits tend to be entirely (and conspicuously) tinted in one color, for each color. I'm looking out for outfits with some detail, such as a fancy bow, a bolero, a striking collar, neckline or darts along the front or a row of tasteful vintage-style buttons or front-fastening; something that stands out as a supremely feminine vintage dress. Some contrast or two-tone details to break the monotony would also serve as an example.
  15. Hello everyone! Thank you so much for all your replies; I appreciate your discussion and some welcome elaboration on certain points. Yes, I would say the main idea behind this thread was to get a feel for the topic at hand, discuss and establish the nature of cults and "secret societies" in SL; how they exist, why they exist and if they exist at all, what they (may) look like and how they may operate. We also discussed what are considered cults, why they are considered cults and the definitions of a cult. Naturally there is some overlap between these, and there have been some good examples provided of "cults" in SL, to the point where most of us can say to some of these examples, "that's definitely a cult, wow." or "that's pretty darn cultish" without too much disagreement. I mentioned religious cults in particular because I felt like that was the most familiar, relevant and common example of cults. But political cults and roleplay cults are also relevant, as are cult-like elements of the social realm in SL and other groups, to a lesser extent. I alluded to the permissibility of certain groups and activities in SL and the history, the nature and extent of the tolerance of controversial groups and communities because I felt that gave some idea of the above and sets a framework for the nature of cults, "cultish" activities, groups considered to have cult-like elements and other similar things in SL; the nature of the environment in which they exist can say some things about how and why these groups or communities exist, and I believe discussing why things are that way and how it came to be also in turn helps to explain why these groups exist, and how they exist.
  16. Hello, everyone! 😄 Thank you for all of your insightful and hilarious replies; this has helped paint a picture of the milieu surrounding possible cults and "cult-like" organisations and institutions in SL. I'm really happy to see all the light-hearted banter amongst you all. This. Although not mentioning cults such as Heaven's Gate and Branch Davidians and whether similar groups have a presence in SL, this answer has been the most insightful, comprehensive and accurate to what I had in mind so far and answers my questions in the best way. So LL actually turns a blind eye to some groups and their activities if they are in "alignment" with their own values? That also reminds me of how loose LL seemed to have been in terms of Neo-Nazi groups and their symbols, white supremacist groups, confederate flags and being able to use slurs as search terms on the marketplace, until some people naturally raised an issue and complained over it, and only then do they actually take action, and they crack down hard, as you might know. On the other hand, they allowed not only "black supremacist" groups in the past, but all manner of sexual fetishes and expression including Gor, snuff play and torture, perhaps that's the political correctness in action. I'm not sure where conspiracy theories sit with this; are there flat earth groups in SL that regularly come together? How far does the political correctness go with LL and the cultures within SL? Can we get an idea of the extent of it? Have there been examples of "political correctness" gone too far on part of LL that the wider community has reacted with backlash? That reminds me of the supermarket that asked a "follower of Jediism" to leave as he was wearing a hood, only to issue a statement apologizing for discriminating against him on religious grounds, despite the fact that he stated that he only identified as such just to wear a hood indoors where they aren't allowed. And I think all of those companies which issued guidelines on proper gender neutral pronouns such as "hir", "zir" "ze" etc. only to face backlash. Has there been anything like that in SL before? So, as long as you don't abuse or harass anyone, you don't discriminate against people or spew prejudice and hate, you can create your own new religious (or otherwise) group in SL, have a vetting process, well-kept initiation rituals and rites of passage, wear white robes and hoods, propagate and inculcate your own "extreme" dogma in your members, and adopt all the characteristics and hallmarks that you would heavily associate with the most stereotypical idea of a cult, and have it all be a serious thing. Although most of the replies here would suggest that this is quite rare, if it exists at all. When I say "secret society" the most stereotypical examples again come to mind. Freemasons, illuminati etc. Is there dedicated "cult/secret society roleplay" in SL, as with other themes, such as vampire, crime gang, town, family, fire department etc.? Do people do this purely for fun?
  17. Yes, precisely. Yes, that's why I'm asking if there are any groups or communities here in SL which are considered or widely perceived (to any relative degree) to be cults by the wider community. Yes, cults have certain characteristics and hallmarks of what makes them largely considered, as close to unequivocally, cults. I'm not just talking about merely passionate individuals and the communities they belong to, nor merely religious traditions or practices that some people in the wider "mainstream" community may not be too familiar with, such as certain forms of paganism, witchcraft or satanism. With the last point there, I'm referring mostly to the Terms of Service and the Community Standards and what is permissible in that regard. Naturally, offensive groups such as Nazi groups and white supremacist groups (which could be considered "cultic") have been cracked down on and have virtually gone the way of the dodo here in SL. I was wondering if there are any "cults" here in SL as discussed above which have drawn that same unwanted attention, due to extreme zealotry and questionable practices and all the negative characteristics we ascribe to cults, while not necessarily being overtly discriminatory or prejudiced.
  18. Thank you everyone for your replies; Wow, this has been interesting for sure. I suppose what I'm really wondering if there are groups quite overtly seen as cults, especially religious cults by the "mainstream" of SL, with all the stereotypes and hallmarks attached to them; you can look up the defining characteristics and hallmarks of cults and see if they apply. I'm interested in knowing how they are received by their wider community in SL, if they're open and appear to do everything by the rules, if they sit in a legal grey area or if they're driven underground. I'm sure blackmail and guilt-tripping is a thing in SL. What I meant by secret societies is not so much exclusively a literal "secret" society where it's strictly kept away from the eyes of the uninitiated so nobody knows about them; but in the sense of closed communities with membership requirements, initiation rituals, symbols, uniforms and certain practices which may be considered esoteric. Does this kind of thing exist as themed roleplay in SL? Are there people who treat these (I assume) small and relatively esoteric groups and communities, their values and dogma seriously? People who find some higher purpose in following a small, relatively unknown cause? Can I just one day literally decide to start my own "religion" based on certain principles and beliefs, recruit followers in SL and have them worship me as a leader, supreme being or something like that? Or a totally made up fictional being with no substantial history? What are the rules? Obviously being prejudiced against certain people or groups is a no-no, nor can you scam people financially. That would be an interesting social experiment, to say the least.
  19. Hello everyone, So, I was having a discussion with my friends and this subject among many others was brought up; while it didn't end up with a "conclusive" answer, it had me curious; Do cults exist in SL? I'm not merely referring to social cliques, religious groups and communities and groups considered "cult-like" in the most informal senses. I've read through forum posts dealing with these matters without touching on this particular subject specifically, so I wanted to address it here. Obviously religious and spiritual groups and communities exist in SL and there can be disagreements and "incompatibilities" between them. I mean groups and communities that seek to indoctrinate or "brainwash" its members in its own dogmatic teachings, to the point of fanaticism, extreme fervor and zealotry. Personality cults that may have its followers venerate and revere a leader and their teachings. Are there groups and communities in SL that claim to be offshoots or representatives of real-world cults? How about conspiracy theory groups? Are all of these within the TOS? There have been some things in SL before that some may consider "extreme"; white supremacist groups and fetish communities involving death and torture. (not to equate the two in magnitude) Have people started their own unique "religions" in SL, with hierarchies, doctrines and followers? Even if it's just for roleplay, or a "joke religion". What happens to religious groups and communities that start to no longer fit the open and accepting paradigm that you tend to see in SL's diverse spiritual community? If they become too "extreme" is there a crackdown? Are there "secret societies" in SL? Dogmatic, closed communities with membership requirements, initiation rituals, symbols, uniforms and "esoteric" practices?
  20. Thank you all very much for your replies; Lucia Nightfire, how exactly is this done? How did you made an animesh clone of yourself - clothes, hair, tail and all? I'm really curious now. I know animesh NPC companions and followers are a thing, but one of yourself, down to your clothes and accessories? It might be quite simple after all, but... -mind blown-
  21. My username in-world appears as "lottasinclair" in all lowercase letters. So I could perhaps substitute one of the Ls. But if I can't do that then I could put in an extra letter like an s, to make "lottassinclair". Or add a number to the end of my name. Failing that, I would have to give an entirely different name altogether. I'm obviously not going to AR myself for impersonating me, but I'm thinking someone else could AR my alt (or my main) for impersonating me and I could get into trouble that way, even if technically I gave my consent to my alt account to "impersonate" me... because it actually IS me.
  22. Thank you both for your swift replies; So obviously I can't have the exact same username, but can I have a username that's so similar you may not be able to tell the difference, perhaps at first glance? Can I do the classic trick of substituting the letters in my name with others that look almost the same? For example, can I change the lowercase L in my name to an uppercase I and give that name to my alt? Is this too sneaky and deceptive to not get me into any kind of real trouble? Or do I need to add an extra letter, number or two somewhere to make that distinction that it's a separate account and personality?
  23. Hello, everyone. So, I love the idea of having a clone or an identical twin sister; I'm thinking of creating an alt with an avatar that looks like me, and have her on at the same time as me in separate viewer instances (or alone) just for fun. For practical reasons, I would give her a different name to me, but I was wondering, in addition to making her look virtually indistinguishable, can I give my alt the same name as my main? Same display name and a username that's similar enough that people may not tell the difference? Will I get in trouble for this if I ever have issues I need to sort out with Linden Labs? This would bring the number of accounts per household to 3. I think I would want to give her a few key "personality" and subtle physical differences over time. Can I, on occasion, use my alt who looks exactly like me, has the same name and maybe even the same profile details to interact with people and make them think it's me, for giggles? Is this allowed? Clearly someone else can't take your name, profile details and likeness and pretend it's you, but can I do this with myself? Am I impersonating another user if I make them believe one account is actually another, even if they belong to the same individual? (me) Obviously the age of the account would give it away, but I'm expecting not every single person will notice straight away. Nothing too serious, I hope. It's all in the name of fun. I'm just wondering what's possible.
  24. Yes, Monarch Motorcars; they had been around for at least 2013. They shut down some time in 2020, I believe. They had a very nice in-world store and all kinds of unique vehicles; limousines, military versions of vehicles, wedding parade vehicles, funeral parade vehicles, police and detective vehicles... The car that was on my wishlist that I never purchased is this one, the Monarch 760SK Cyrado Roadster. It's basically a rendition of the car from the Great Gatsby, and it came in "Gatsby yellow". It even came with an animated roof; so much detail. Suffice to say, I have never found an alternative vehicle to replace this one. I might post in the Wanted section about this.
  25. Wow, thank you all for the swift replies and the insights! I made this post because one of my favourite stores shut down; Monarch Motorcars - they made mostly 1930s style cars that were quite unique and you couldn't find anything like it anywhere else; I'm still looking for an alternative to replace a vehicle that had been in my wishlist for a long time but I ultimately regret not purchasing from their store. Needless to say, I haven't been able to find one. They've been around for at least since 2013 and they shut down sometime in 2020. I messaged and left a notecard to the creator whose profile is now blank and predictably I haven't heard back; the store group still exists but only has a handful of people who mostly haven't been around for a while. I witnessed Rezology, H@S Heels by Saki, FELGO and now Monarch Motorcars shut down, I've never seen a store that has shut down and came back in any form, so I was wondering if it even happens at all.
×
×
  • Create New...