Jump to content

sophy7777

Resident
  • Posts

    56
  • Joined

  • Last visited

Posts posted by sophy7777

  1. 3 minutes ago, Fox Wijaya said:

    depending on what

    is... when its only SL information without rl details or other dangerous infomation, your friend won't have a lot of success when contacting others. And he/she will have to open his/her rl identiy to be able to handle on it. If it's only SL gossip not really worth the trouble.

     

    Just now, sophy7777 said:

    he is threatening to expose privet coversations that COULD do not know for sure yes its a waiting game but could invole rl information of this friend or others with what thy have told this person in the past. it may just be sl gosip but my friend would rather know for the worst posible situation. there for go my questions. 

    sorry forgot to quote you first time love 

     

  2. sadly my friend has got herself in a bit of bother and has asked me for my help to see if linden labs TOS has been broken. she has received a threat from a "ex friend" after leaving a bloodline clan. that they were going to "air some dirty laundry" the post he made on fb was he had been up to the "wee hours collecting evidence (note-cards of chat logs) to air the dirty Landry". 

    now although not a huge threat its alarming and not fair for anyone to fear the worst. expesualy as they could have chat logs of you and there convo for years and could pick anything to make the other look bad. now i read into the tos and they said that in sl or in the forums that would be against TOS but there was a note. 

    NOTE: This does not include posting of chat to social media sites or other websites. Posting such logs on web pages, emailing them, or printing them out and posting them on utility poles in the "real world" -- are all actions beyond the scope of the Second Life Terms of Service. ; while that might be illegal, but those laws must be enforced by the proper law enforcement agencies.

    now this i sadly can accept as its not on second-life or any linden labs website it isn't there. but i also noted that in the TOS there is also 

    1.6. You agree to respect the Intellectual Property Rights of other users, Linden Lab, and third parties. You agree that you will not copy, transfer, or distribute outside of Second Life any Content that contains any Linden Content, in whole or in part or in modified or unmodified form, except as allowed by the Snapshot and Machinima Policy, or that infringes or violates any Intellectual Property Rights of Linden Lab, other Content Providers, or any third parties.

    so would this count as linden labs property? its a log being taken from there software and service and pasted somewhere else. 

     

    mostly id love any help to reassure my friend shes in a horrendous position and i wish i could give her any advise but as you see im not so savy as i thought i was with what classes as what. 

    thanks in advance  

  3. heya! 

    hoping to find someone to help make a dolly key with the option to run out of time causes rlv restrictions like walk, or talk. id love for it to be windable and to choose public or just windable by themselfs. 

     

    pricing can be discused as id apreciate any help i get ❤️ 

  4. proud to call my services affordable for all, little thoughts offer new ways to get the mesh content you want into second life (TOS of linden labs pending of course!!) offering two versions of business to try meet your needs!! 

    I am a keen creator of all, toys, buildings, furniture, poses, accessories, animations and now started clothing too! prices starting as low as 500L!!!! 

       contact secondlife:///app/agent/47f37397-9596-41cb-8713-96c36ea2b685/inspect (sophy7777) inworld or comment below for more information! 

  5. 1 minute ago, chibiusa Ling said:

    You might want to read through these pages :

    http://wiki.secondlife.com/wiki/LlGetNotecardLine

    http://wiki.secondlife.com/wiki/Category:LSL_Notecard

    You need the data server event to pick up what info was read when using llGetNotecardLine, there is an example in the first link I posted that shows you how that is done. 😁

    Also, don't worry too much about being new. We were all new at one point and in your position and this forum is here for you to ask questions and get help and progress your learning ^_^

     

    i had a lok though them but its lates pronberly just need a break before trying again i think my brain melts away

     

  6. i have a script to listen for another object but i want it to send over what info is on the nc, i tried a few diffrent ways but seemed not to work woundered if anyone could advise me to how to add it in rightly. 

    the script without any nc reader tried to bed added is

     

    integer COMMCHAN = -99424;
    string COMMSTRING = "ff254DD!!Fk";
    integer listenHandle;


    default
    {
        state_entry()
        {
            listenHandle = llListen(COMMCHAN, "", NULL_KEY, COMMSTRING);
        }
     
        listen(integer channel, string name, key UUID, string message)
        {
            if (message == COMMSTRING) {
                key vet = llGetOwnerKey(UUID);
                llRegionSayTo(otherobject,0,"INFO YOU WANT TO SEND!");
            }
        }
    }

     

    and how i tried to add in the nc reader 

     

    integer COMMCHAN = -99424;
    string COMMSTRING = "ff254DD!!Fk";
    integer listenHandle;

    key notecardQueryId;
    string notecardName = "info";


    default
    {
        state_entry()
        if (llGetInventoryKey(notecardName) == NULL_KEY)
            {
                llOwnerSay( "Notecard '" + notecardName + "' missing or unwritten");
                return;
            }
            // say("reading notecard named '" + notecardName + "'.");
            notecardQueryId = llGetNotecardLine(notecardName, notecardLine);
        }

    {
            listenHandle = llListen(COMMCHAN, "", NULL_KEY, COMMSTRING);
        }
     
        listen(integer channel, string name, key UUID, string message)
        {
            if (message == COMMSTRING) {
                key vet = llGetOwnerKey(UUID);
                llRegionSayTo( ": " + (string) notecardLine + " " + data);
                    notecardQueryId = llGetNotecardLine(notecardName, notecardLine);
            }
        }
    }

     

     

    like i say im pretty new to scripting so may have gone the wrong way bout this >.< any help is aprecated and sorry if ive put this in the wrong category i get confused with them all i think >.< 

  7. 1 hour ago, Xiija said:

    sounds something like....

    HUD sends a "ping"  with llRegionSay  ( or  llWhisper() = 10m,  llSay() = 20m, llShout() = 100m?) on a timer.

    avi has the response object on, and it is listening on the same channel as the "ping'.

    object reads its NC and sends a reply back to the HUD ?

    HUD adds avi to a list so that it doesn't spam the owner.

    nods exacty! yay i make sence 

  8. wanting to make a script for a scanner where one person wears the scanner and can sacn another (if they have the object that the scanner is looking for like a box ) that contains a nc, this notecard has information on it  so that the person scanning would see whats on that nc when scanning so theyd see something like this : 

    name: xxx resident 

    age

    ice (in case of emergency) : xxxxx resident 

     

     

    thank you in advance 

    ❤️

  9. im trying to make a HUD that would scan people around for a object they'd wear so it can tell them set informations. 

    for example 

    you scan a person and the hud says to you 

    name: xxxx resident 

    ICE contact: xxx resident. 

    age: 

    so information that would be listed by the nc on the object, just wondering if it IS posible  and any tips to how to start researching tinto HOW its posible

     

    thanks in advance 

    ❤️

  10.  

    5 minutes ago, Lindal Kidd said:

    That is incorrect.  If you are 16-17, you can only access General content.

    i am glad that is true, but if its just ticking a box id rather have my own box to tick there too. thank you for telling me though i thought it was moderate too!

  11. 4 minutes ago, Lindal Kidd said:

    If your land is Moderate, you don't need the script.

    Personally, I would consider it a rude and intrusive question, and even though I am way over 18 I would never visit your place because of that.

    well as LindenLab states 16-year-olds can enter moderate sims, and this is as the age of consent is different around the world, but if an adult from America engaged with roleplay or otherwise then finds out the age of this teen is 16 may feel themselves like they have abused a minor, now I don't know about the legal side of things ill hold my hands up to that, but i was one of the thoughts young girls who went into chat rooms and saw things at the age of 16 that scared me, and that did put me in danger. now im not saying underage people will come to this hangout, but i want to say i did all i could to protect them from being in danger as the hangout owner i would feel slightly responsible if i hear wind that an underage person or even an adult was damaged mentally by any interaction in the hangout. i do not want to know where you are what you do as a job its a simple yes and no answer and yes people could lie but i have at least tried to stop anything happening and i can feel ive done my best. as for linden labs if i remember right all i had to do to say i wanted to see adult sims was tick a box, so i feel that its the same kinda thing, anyone can say they are 18 plus but i can go well this is what i knew they agreed and told me they were 18 and i had no right in saying they were lying. i am sorry you feel its rude though as it is not meant to be that way at all.

     

  12. 29 minutes ago, Rolig Loon said:

    That's quite reasonable.  A simpler solution, though, is to rate your region either Moderate or Adult.  By definition, anyone who is under 18 cannot go to either type of region.  So, if someone lies to you, they have also lied to Linden Lab -- thus comitting a TOS violation that can get them banned from SL.  The point is that LL has already done the work for you by asking every resident that same question.  All you have to do to cover yourself legally is to be sure you set the region's maturity rating properly and believe that LL has already determined the person is an adult.  If you uncover independent evidence that a visitor is a liar, submit an AR.

    back to the script could you help me so it only asks people once? 

     

  13. on the pra

    13 minutes ago, Rolig Loon said:

    Like many of the land LSL functions, llAddToBanList will only work if the script is in object owned by the landowner and if the landowner is in world.  The best way to guarantee that the owner is in world is to deed the land and your object to a group, since a group is always in SL. 

    On the practical side, I'm sure that you have 100% trustworthy visitors to your region, but most people don't.  What's to keep anyone from lying?

    on the practable side, it means we have tried our best to stop people underage people into the hangout. and they have told us they are over 18, yes they could lie but the same way they can lie ticking the box for secondlife saying they want to go to adult content. 

  14. hey, im trying to make a script to check ages of people coming into my hangout, (rl ages not sl) but when i script LLaddtobanlist it doesnt, i can eject people but not add them to ban list, i was wondering if anyone could help as i also wanted to expand it to only ask people once,any sugestions? 

    the script goes as followed 

    string name;
    string detectedName;
    string dialogInfo = "\nWelcome to the little things hangout please answer the following questions and read the rules. 
    are you ages 18 or over in real life?"; 
    key id;
    integer dialogChannel;
    integer listenHandle;


    list buttons = ["-", "yes", "no", "no comment"];

    default
    {
        state_entry()
        {
            dialogChannel = -1 - (integer)("0x" + llGetSubString( (string)llGetKey(), -7, -1) );
        }
         collision_start(integer num_detected)
        {

             
            id = llDetectedKey(0);
            name = llKey2Name(id);
            llListenRemove(listenHandle);
            listenHandle = llListen(dialogChannel, "", id, "");
            llDialog(id, dialogInfo, buttons, dialogChannel);
            llSetTimerEvent(180.0); // Here we set a time limit for responses
     
            detectedName = llDetectedName(0);
            dialogChannel = -1 - (integer)("0x" + llGetSubString( (string)llGetKey(), -7, -1) );
        }
     
        listen(integer channel, string name, key id, string message)
        {
            if (message == "-")
            {
                llDialog(id, dialogInfo, buttons, dialogChannel);
                return;
            }
     
            llListenRemove(listenHandle);
            //  stop timer since the menu was clicked
            llSetTimerEvent(0);
     
            if (message == "yes")
            {
                llSay(0, "Thank you please use the teleporter to explore the hangout.");
            }
            else if (message == "no")
            {
                llSay(0, "I'm sorry this hangout is for over 18 years old only, you will now be teleported home any issue with this please contact the hangout staff.");
               llAddToLandBanList(id,0.0);
               llEjectFromLand(id);
            }
            else
            {
             llSay(0, "I'm afraid we need to know the answer to this question to allow acess you will now be ejected feel free to return to answer this question again.");
               llAddToLandBanList(id,0.1);
               llEjectFromLand(id);
            }
        }
     
        timer()
        {
        //  stop timer
            llSetTimerEvent(0);
     
            llListenRemove(listenHandle);
            llSay(0, "Sorry, we need a answer to this question we understand that you may have been afk at the time, unfortunatly you will be temp banned for one hour, any issue please contact [secondlife:///app/agent/47f37397-9596-41cb-8713-96c36ea2b685/about sophie]- with any issues. ");
             llAddToLandBanList(id,0.1);
        }
    }

  15. waves, 

    im trying to texture a mesh sign i made in blender, i have the sign in the world  and the uv map i tested on them inworld and it fitted perfectly, but when i try to do a basic texture in gimp and upload or preview  to see how it would look in world it shows up from blank. ive even uploaded it to check and its still blank. its highly frustrating. i tried it on a normal prim and the texture showed up  fine! im happy to share the belnder file if its that thats causing the isues as i am beginning at blender so might be something i havent done right there 

    5d230e780261fa2c695874ce643e1d3e.png

    6d017a4673f8d544db1643ad72a8b1d5.png

    f1ac7bc5df827fd13e28abcd29e19fe9.jpg

    d165acbf114c12e70fffd0d32e9dcd04.png

  16. 8 minutes ago, Rolig Loon said:

    Use linked messages.  Send with llMessageLinked and receive in a link_message event.  Even better, though .... Unless you have a good reason to make each of your HUD buttons as a separate linked prim, it's much smoother to simply texture your HUD with an image that looks like a user interface with a bunch of button on it.  Then use llDetectedTouchST to determine which area of the texture the user clicked on.  That saves you having to put a mess of separate scripts in all of the buttons.  You do the whole job with a single script in the root (the only prim, actually).

    ll message linked looks a good way, ill have to read up on it as i haven't yet came across this before! id have to search out a few examples to help me ^.^ thank you so much!

×
×
  • Create New...