Jump to content

Subsonic Oh

Resident
  • Posts

    91
  • Joined

  • Last visited

Posts posted by Subsonic Oh

  1. After fresh Windows and Firestorm installation, when I receive new items, I can't find them with the normal search line, they only appear when I click on the inventory tab "current items".

    Strangely there I see a "Received Items" folder, but when I search my inventory for the received file, I can't find it. Also the folder "Received Items" isn't showing up.

    This really sucks, because sometimes Marketplace is super slow and i receive deliveries hours later when I'm offline...

    Any ideas?

    I have it in German. "Received Items" = "Erhaltene Artikel":

     

    received items.jpg

    received items 2.jpg

  2. Well, all I can say, my headset perfectly works at Discord and Voice Chat in Firestorm also worked perfectly before I had to update my viewer.

    In the previous version I've lost the ability to use Media - this is working on the current version - but I lost the ability to voice which really sucks.

    Yes, Voice Chat is enabled in the settings, and all settings at "Sound" -> "Voice Chat" look fine for me. There's just one strange thing there. When I click the "device settings" button, I see "Input" and "output" grey and it says "Please wait" next to the volume slider.

    I also deactivated voice and enabled it again after a few minutes - didn't help.

    Oh, and of course I see Voice Chat is activated on our sim.

    Btw, this strance "Output" device name is stupid. I can select my Logitech headset at "sounds" and can hear music and sounds on my headset.

    Any ideas?

    ___voice.JPG

  3. Guys, this is serious, I hope someone can help...!
     
    I was was just shopping. In the end I couldn't "unwear" my shoes and a demo item couldn't be created in my inventory.
     
    So I TPed home and wanted to restart SL after cleaning my cache. Then i got this message, which also comes when I wanna log in my alt:
     
    "Login Failed. Inventory problem detacted; contact support"
     
    Anybody got any idea?
     

    1632416634286.jpg

  4. 8 hours ago, Polenth Yue said:

    Though that is a caution that one reason someone might send abuse is to see if they can get you to react in a way they can report. Replying doesn't usually get anywhere, but if you do reply, be very careful about your wording.

    Where it's happened to friends, I only know of one case where the person finally believed they'd got the wrong person. Most clung to the belief they were talking to an alt to the bitter end.

    I replied, in a friendly way:

    Quote

    [08:37] Subsonic Oh: Sorry, I did WHAT? 😮
    [09:12] Subsonic Oh: I'm sure you're not talking to the correct person dear. I never did anything bad to kids ever, neither in RL nor in SL, also I'm not a kid in SL lol - i'm in sl since 2007 and honestly, never received an IM like yours before. If you really have anything I did wrong, please show me!

     

    • Like 2
  5. 16 hours ago, JanuarySwan said:

    The kind of message you received is usually to scare someone away from a game.  I've read threads where it happens in Linden Realms.  They want to scare others away from whatever game it is and their IM's come with all sorts of lies, defamation and bleeped words.  

    May I ask if you were playing a "game" at all or at Linden Realms?  

    not at all. in SL i only play the dj quite often, well and i own a zombie shooting sim with my friend...

  6. 2 minutes ago, Bradford Mint said:

    I haven't actually seen any good responses here yet. This is clearly important and warrants you contacting your government.

    They have resources, they can find people, they can launch helicopter attacks to sort this out.

    Failing that, send an email to Liam Neeson, he has skills and knows how to find people.

    Thank you for your helpful message :D

    Honestly, I never had to deal with crap like that before, since 02/2007. And sometimes LL bans people for minor reasons. I'm afraid they could ban me because of what she wrote. I have written to her, she should show me what I might have done wrong in her opinion, or she must have written to the wrong person... I blocked her from our sim... reported her... asked here, i think there's nothing more I could do (beside your advices of course lol)

  7. I just received a long IM while I've been offline. Between many insults she's telling me I'd try to sexually exploit kids through a game, I'd also be a "*****", a "nazi", a "paedo", a *****, my mother would open her legs for anyone.

    I have no idea who she is. I never did anything bad to kids ever! Neither in SL nor in RL. I have no idea why she's doing that to me. Also she said I should better call the police.

    I reported her to Linden Labs, not sure if this helps. Could you please help me?

    If you want to read her full IM:

     

  8. (i hope i picked the correct forum)

    On our zombie sim I'm mostly online when i'm afk, so is my alt/wife and our simbot via phone (normal ava, just online by lumiya/android). Usually we make around 3,000-4,000 traffic only with that, plus some random survivors.
     
    Today I looked at the sim traffic, and it shows 92!????
     
    Anybody any ideas on that? Have they changed something?
  9. I'm finally finished it. It's tested and working! Thanks all for your help, you're great! :)

    Here's the working result:

    float time = 15;
    default
    {
        state_entry() 
        {
        
            }
       
        attach(key attached)
        {
            if (attached != NULL_KEY)   
            { 
                llRequestPermissions( llGetOwner(), PERMISSION_TRIGGER_ANIMATION );
            }
        }
    
        run_time_permissions(integer p)
        {
            if(p & PERMISSION_TRIGGER_ANIMATION)
            {
                llSetTimerEvent(time);
            }
        }
    
        timer()
        {
            string curranim = llGetInventoryName( INVENTORY_ANIMATION, 0);
            llSleep(5.0);            
            llPlaySound(" --Sound-UUID1-- ",1);
            llStartAnimation( curranim );     
            llSleep(15);
            llPlaySound(" --Sound-UUID2-- ",1);
            llSleep(3.0);            
            llStartAnimation( curranim );     
            llSleep(21);
            llPlaySound(" --Sound-UUID3-- ",1);
            llSleep(30);
            llPlaySound(" --Sound-UUID4-- ",1);
            llSleep(0.5);            
            llStartAnimation( curranim );     
            llSleep(9.5);
            llPlaySound(" --Sound-UUID5-- ",1);
            llSleep(25);
            llPlaySound(" --Sound-UUID6-- ",1);
            llSleep(0.5);            
            llStartAnimation( curranim );    
            llSleep(19.5);   
        }    
    }

    A linked slave prim only contails a sound preloader and a llOwnerSay chat.

    • Like 3
  10. Hmm ... I tried this, but it doesn't loop, it only plays the sound and animation once, doesn't reset. In my understanding, the reset should restart the script, or where is my mistake here?

     

    default
    {
        state_entry() 
        {
            }
       
            attach(key attached)
        {
            if (attached != NULL_KEY)   
            { 
            llRequestPermissions( llGetOwner(), PERMISSION_TRIGGER_ANIMATION );
    		}
    	}
      
     run_time_permissions(integer permissions)
        {
                llPlaySound(" ---Sound UUID--- ",1);
                llStartAnimation( llGetInventoryName( INVENTORY_ANIMATION, 0) );
                llSleep(15);
                llResetScript();
        }
    }
    
    

     

×
×
  • Create New...