Jump to content

Rolig Loon

Resident
  • Posts

    46,271
  • Joined

  • Days Won

    5

Everything posted by Rolig Loon

  1. 1. Stand in your house 2. Take all of your belongings back to inventory, one at a time (NOT in a lump) 3. Click World >> About Land >> General >>. Abandon Land 4. You're FREE!
  2. What's a blackbox? The Unix system, maybe?
  3. When you add information to the JIRA, would you please include as much information about your system as you can, to help Linden Lab's developers isolate the problem? Also, include the information that you posted here.
  4. It has "sprung up" well before today. We've seen occasional reports here in Answers for over a year and there are expired JIRAs that go back to 2009. The message itself is a Windows message that reports a RAM error, not a SL message, but I do worry about what is triggering it. I also worry about why we have had a half dozen reports since the end of May. That's why I opened the JIRA this afternoon, to alert Linden Lab's developers, so that if there IS something in SL that's triggering the error, they at least have a heads up. Thank you for commenting on the JIRA. Would you please add your system information so they have more to work with?
  5. The LSL wiki page for llHTTPRequest notes that Requests must fully complete after 60 seconds, or else the response will be thrown away and the http_response status code will be 499.I suspect that once you flood the sim's servers with requests from several scripts or objects, it takes a while to clear the queued requests, each of which then returns 499 because it has gone past the 60 second limit.
  6. Easy. Just replace llGetOwner() with "".
  7. "Thinner" means only a very few pixels wide. The crotch is very poorly designed on the avatar mesh, so you will always see bleeding (sounds nasty) if you draw outside that 2 to 5 pixel wide zone. That accounts in large part for the popularity of thong underwear -- an abominably uncomfortable style in RL -- in SL wardrobes. It's either that or boxer shorts. :smileysad:
  8. Yes. I opened that JIRA this afternoon to consolidate the handful of cases we've seen here in the past month or so. I'm not convinced that there's anything the LL developers can do, because it's a Windows error. Still, if there's any chance that a SL viewer contributes to the problem, it's worth alerting them. It would help if people who add comments would cut & paste their own system specs into their comments.
  9. When you're using llTargetOmega, the object isn't actually moving at all, as far as the servers are concerned. The only motion is in your own viewer, generated by your GPU. If something happens to stall that -- a local blip in your Internet connection of some kind -- the motion might stop in your own viewer but not in anyone else's. You might try forcing the object to update its actual rotation every once in a while by applying something like llSetLinkPrimitiveParamsFast(LINK_THIS,[PRIM_ROTATION, llEuler2Rot(<0.0,0.0,PI/4>)*llGetRot()]); for example. That should be enough to convince your graphics card to keep the llTargetOmega rotation going. EDIT: Corrected LINK_SET to LINK_THIS. So long as your script is in the root prim of the linkset, this works. Here's a sample script to show what I mean... integer gON;default{ state_entry() { llLinkSitTarget(2,<0.3,0.0,0.6>,ZERO_ROTATION); // Sit target is in the "train" child prim } touch_start(integer total_number) { gON = !gON; if (gON) { llTargetOmega(<0.0,0.0,1.0>,PI/3,1.0); llSetTimerEvent(1.0); } else { llTargetOmega(<0.0,0.0,0.0>,1.0,1.0); llSetTimerEvent(0.0); } } timer() { llSetLinkPrimitiveParamsFast(LINK_THIS,[PRIM_ROTATION,llEuler2Rot(<0.0,0.0,PI/4>)*llGetRot()]); }}
  10. If you're using Firestorm, you should be able to type CTRL + H to open your Chat History while you are in mouselook or CTRL+T to bring up conversations window in mouselook. I don't use the V3 viewer, but I suspect that something similar works in it as well.
  11. Aside from offering generic advice, there's not much we can say without knowing more about your computer, its Internet connection, and how you have your viewer configured. It's possible that some changes in the last round of server upgrades have made a difference. Other than that, I suggest checking through the ideas at http://community.secondlife.com/t5/English-Knowledge-Base/How-to-improve-Viewer-performance/ta-p/1316923 . If you post more details about your own system, we might have more specific suggestions. Just click on the Options link in the upper right corner of your question and select EDIT. Please do NOT start a new thread.
  12. You didn't explain why you can't upload, or what happens when you try, so all I can do is show you the instructions ... You add items to your Marketplace listings by using a window called the Merchant outbox, which uploads your items to the Marketplace website. After uploading new items, you may then create item listings for them on the Marketplace website. Uploading items using the Merchant outbox Open the MERCHANT OUTBOX window in the Second Life viewer by choosing Me > Merchant Outbox. Drag items you wish to sell from your inventory into the MERCHANT OUTBOX window. Organize items into folders in the Merchant outbox if they are meant to be sold together. You do not need to box items in order to sell more than one item in a single listing on the Marketplace. Click the Send to Marketplace button to upload all items from your Merchant outbox to the Marketplace website. Adding the item on the Marketplace website On the Marketplace website, choose My Marketplace > Merchant home in the upper-right. Click Manage Inventory on the left side of the page. Under Unassociated Marketplace Inventory, click the name of your item to start editing the item listing, then complete the required fields. You can find a description of all the listing fields here. Second Life Tutorial - Converting item boxes to Direct Delivery folders.wmvRead more infomation about creating and managing your Marketplace store at http://community.secondlife.com/t5/English-Knowledge-Base/Selling-in-the-Marketplace/ta-p/70019 . If you have a specific question about something that's not working for you, click on the Options link in the upper right corner of your question and select EDIT to add information. Please do NOT start a new thread.
  13. MOAP is a very handy feature. It should work fine in your HUD, and others shouldn't be able to see it. After all, the prim that it's on is not visible in world. It's on your own screen. You should be aware, however, that many SL residents keep streaming media switched OFF in Preferences because they are afraid that someone will be able to capture their IP address when it's activated. Those people will not be able to see the web site if they are using your MOAP-enabled HUD. As an alternative (or perhaps a supplement) you may want to consider using llLoadURL and simply opening the web page in the user's default browser. I have created several MOAP displays that give users that option.
  14. So far, so good. The screen is supposed to go a bit darker and you're supposed to get a window to select the image to upload. The system won't let you upload a pic unless it is in the right format, though. It has to be PNG, JPG, TGA, or GIF. Also, your image's largest dimension should be 700 pixels. Marketplace will downsize images that are too large, but that is a very slow process. The sequence may time out before it finishes. For more information about photos for Marketplace, see http://community.secondlife.com/t5/English-Knowledge-Base/How-to-market-your-products/ta-p/700181#Section_.3
  15. "It" might be your browser. For reasons that nobody can explain, SL's web sites have always had trouble with the Internet Explorer browser. Try using Firefox or Chrome instead. They work for most people.
  16. When was the last time you cleaned the dust out of your computer and checked to be sure that the fans are spinning properly? The first thing I suspect when someone crashes within a few minutes every time he logs in is that the computer is overheating. Crashing is your computer's self-protection against burning up vital components. Even if it's not the answer in this particular case, check it first and get in the habit of using a can of air to blow out dust bunnies and cat hair once a month (more often if you have a big cat). If that doesn't do the trick, click on the Options link in the upper right corner of your question and select EDIT to let us know so that we can try something else. Please do NOT start a new thread.
  17. I don't know why, but we have seen 3 or 4 people this week with that error message. The message that says (0xc0000005) is not a message from Second Life. It's a Windows message, described in this thread >>> http://www.updatexp.com/0xC0000005.html , for example. The implication from this and similar sites that you can find with Google is that this is a RAM error --- a failing memory chip somewhere in your computer.
  18. Always download graphics card drivers from the manufacturer of the card, not the company that made your computer. Intel Video Driver Intel driver download page Intel does not have a universal driver set. Please go to Intel's site and select the appropriate download.You should be aware, though, that the Dell Latitude D620 is a business notebook that's designed for handling office tasks like spreadsheets and database management. It's not likely to give very good performance at all in SL. You may get your best performance with graphics set on Low and with a short draw distance. Do NOT use wireless. If you are lagging badly with the standard V3 viewer, consider installing a third party viewer like Phoenix, Imprudence, or CoolVL that will put fewer demands on your notebook.
  19. So put a llRegionSayTo statement in the touch_start event of each script, aimed at the other object, and accompany it with a listen event in each object that listens for the message. Put your texture change command in the touch_start event and the listen event in both objects. That way, no matter which object you touch, the touch will change its own texture and the message it sends will change the texture of the other object. Just be sure that you change textures with llSetLinkPrimitiveParamsFast, not with llSetTexture. llSetTexture has a 0.2 second delay, which will mess up your synchronicity.
  20. Now I'm getting worried. This is the second time today for this same rare message. I wonder if it's the heat? The message that says (0xc0000005) is not a message from Second Life. We've had a small handful of posts about this problem. It's a Windows message, described in this thread >>> http://www.updatexp.com/0xC0000005.html , for example. The implication from this and similar sites that you can find with Google is that this is a RAM error --- a failing memory chip somewhere in your computer.
  21. Firefox won't recognize a SLURL unless you have told it what one is. You might have to do that manually unless you have a viewer that does it for you. In Firefox: 1. Click on the Tools >> Options >> Applications menu 2. Scroll down until you see "Secondlife" in the left column 3. Use the dropdown menu in the right column next to it to identify your viewer's exe file 4. Click OK to close the window. Thereafter, Firefox will know that if it sees a SLRUL, it is supposed to pass it to your viewer for execution.
  22. When you write your LSL script, you use llRequestPermissions, which then acts as a trigger for a run_time_permissions event in which the script checks to see whether the permission has been granted. Here's the example from the LSL wiki page... default{ touch_start(integer detected) { llRequestPermissions(llDetectedKey(0), PERMISSION_TRIGGER_ANIMATION); } run_time_permissions(integer perm) { if (perm & PERMISSION_TRIGGER_ANIMATION) { llStartAnimation("sit"); llOwnerSay("animation will end in 5 seconds"); llSetTimerEvent(5.0); } } timer() { llSetTimerEvent(0.0); llStopAnimation("sit"); }} When someone (llDetectedKey(0)) touches the scripted object, the llRequestPermissions function is called, asking PERMISSION_TRIGGER_ANIMATION. Then the run_time_permissions event checks to see if (perm & PERMISSION_TRIGGER_ANIMATION) [that is, whether it was given]. If so, the script goes on to start the animation and a timer.
  23. This is a resident to resident Answer service. We are all SL residents like you. No Lindens ever come here. If they did, though, they would tell you that you can only transfer items from one account to another if they have transfer perms. So long as you own both accounts and they are active, all you have to do is give transferable items and L$ from one to the other. If your old account is no longer active, however, the inventory items that were once in it are probably gone. Linden Lab deletes the contents of old accounts after a few months. You can reactivate your account to find out, but it will cost you a $9.95 fee. To start the process: Open a support case. Under What type of problem are you having? choose Account Issue. Choose Reactivate an old account. Enter the required information Click Submit.
  24. The title associated with your role in your active group appears to others above your display name. Whenever you join a group, that group automatically becomes active. Your active group can also affect certain permissions inworld, such as the ability to create objects on group-owned land. To change your active group: Choose Communicate > Groups or right-click on your avatar and chooseMy Groups. Right-click on the name of the group you wish to make active. Click Activate. The group name changes to bold to indicate that it is active. Read more about groups here >>> http://community.secondlife.com/t5/English-Knowledge-Base/Joining-and-participating-in-groups/ta-p/700117
  25. RLV is not in the Linden Lab viewers, so there's no point in filing a JIRA to request that function. It's a third party feature, so you'd have to talk with developers for one of the TPVs.
×
×
  • Create New...