Jump to content

Rolig Loon

Resident
  • Posts

    46,306
  • Joined

  • Days Won

    5

Everything posted by Rolig Loon

  1. Rolig Loon

    HELP PLEASE!

    Did you follow the instructions that I gave you in your previous post >>> http://community.secondlife.com/t5/Account/HELP/qaq-p/1561433 ? I told you that when you report your suspicion that your account has been compromised, Linden Lab will temporarily lock your account while they investigate. That is to protect you from whoever may have managed to get your account information. When they finish investigating and have declared your account safe again --- in two or three days -- you should be able to get back in world again.
  2. Welcome to the crowd. See http://community.secondlife.com/t5/Technical/Help-this-pink-layer-keeps-apearing-on-my-torso/qaq-p/1... You will probably want to add constructive observations to this JIRA >>> https://jira.secondlife.com/browse/VWR-28954? to help the Linden Lab tech crew find a way to fix the bug. Meanwhile, you can fix it yourself by disabling Basic Shaders in Preferences >> Graphics. It's a bit ugly, but it works.
  3. Try testing if ( llDetectedKey(0) == llGetOwner() ) .
  4. I just used my.secondlife.com to look for the avatar you seem to be missing (Che Xxxxx). He's there, and has been in SL for almost 5 years. He ought to be able to log in to SL. If he has forgotten his password, he should follow the instructions in Account credentials to retrieve it.
  5. Rolig Loon

    HELP!

    Your account may have been compromised if: You can't access your account. You suddenly notice a reduced available balance on the payment source you have on file. If this happens, contact us immediately! Here's what to do: Go to the Second LIfe Help page and log in if you can. If you can't access your account, use the Forgot your login information? link on the right to recover your username and reset your password. Then log in. On the Second LIfe Help page page, click the Contact Support link on the right. On the next page, click Submit a a Support Case form. Under What type of problem are you having?, select Account Issue. A second dropdown appears. Under Account Issue, select I believe my account has been compromised. Fill in the rest of the fields as directed. Click Submit. Check your email for your case number. Call our fraud number: 800-860-6990. Once you do this, Linden Lab will place your account on hold and investigate the relevant transactions. This may take a few days. Once we have concluded the investigation, we'll send you an email explaining our conclusion and the action we will take. Note that all transactions involving Linden dollars are subject to Linden Lab's Terms of Service. You may also want to call the Linden Lab billing office. If you have a non-technical issue related to billing concerns, you can call the Linden Lab billing team at the following toll-free numbers: US/Canada: 800-294-1067 France: 0805-101-490 Germany: 0800-664-5510 Japan: 0066-33-132-830 Portugal: 800-814-450 Spain: 800-300-560 UK: 0800-048-4646 Brazil: 0800-762-1132 Long distance ( not free, but you can use Skype to save some cost ) : 703-286-6277 **Note: Support is offered only in English
  6. Probably the easiest way to do it is to use llSetKeyframedMotion , which will let you describe a path, including pauses, and then execute it in a continuous loop. Other than that, all you need to do is be sure that you have sit targets in appropriate prims, so that passengers don't sit on things like the outboard motor instead of seats. If you run into problems as you write your script, feel free to post what you have done as additions to this thread. Please understand, though, that this is not a place to come looking for someone else to write a script for you. If you want to hire a scripter, the Wanted section of the Commerce forum is the right place to post.
  7. Your second try (the one following "And:", not the one following "Such as:") is fine. You're using else if, so that the script doesn't have to keep chugging through all the incorrect options after it has been satisfied by an early one. The only thing that's going to make it fail is that most of the messages you are going to receive are not included in the list called Main_Menu, so the topmost if test in the listen event will fail. So, for the top level menu you can write if (~llListFindList (Main_Menu,[message]) ) but for the second level, you'll need to test whether the message matches the "Beer" list or the "Wines" list else if (~llListFindList(List_of_Beers,[message]) ) and else if (~llListFindList(List_of_Wines,[message]) ) Once you get going, you obviously want the final options in each branch of the if tree to have an actionable outcome (llSay something or llGive something or at least save a result of some kind). Otherwise, there's no point in doing all the braching if tests. Also, once you have that logic worked out you'll want to make provision for closing a llListen once the user has made a choice or letting a timer event cancel it. You'll end up with orphaned listens if you don't. BTW, using the state idea isn't a bad one. You could make it work easily enough by letting the state_entry event in each state hold the next level of dialogs. Just be sure that you re-open the llListen in each state, since they will be closed automatically with each state change. Although states can be clumsy, the advantage of using them is that you know the llListens will be closed and you know that the script will not let a second user break in which the first user is clicking menus. The touch_start event is only in state default, after all. I recommend reading through http://wiki.secondlife.com/wiki/DialogMenus carefully and then poking at several scripts in the LSL Library that use multi-level dialogs.
  8. Please read the section on License Conditions, part b, at http://wiki.secondlife.com/wiki/Linden_Lab_Official:Snapshot_and_machinima_policy . Also note elsewhere in that policy that Linden Lab asks you to respect the privacy interest of members of the community.
  9. Start at http://www.shoutcast.com/ . Shoutcast will connect you to thousands of Internet radio stations. All you need to do is pick one that you like. Open it with your favorite audio program, grab its URL, and you're done.
  10. You can never change your username, MrZemunner. That name, like your RL Social Security Number, is permanent. You may choose a different Display Name -- a convenient nickname for use between friends -- but your official name by which you log in to SL and carry on all financial business cannot be changed. Other than using a Display Name, your only option is to open a new account (an alt) under a different username. See http://community.secondlife.com/t5/English-Knowledge-Base/Usernames-and-display-names/ta-p/700173 for more information about usernames and display names.
  11. Terms of Service (Sect 12.2): "12.2 The applicable law and venue for any non-arbitrated dispute is California. You agree that this Agreement and the relationship between you and Linden Lab shall be governed by the laws of the State of California without regard to conflict of law principles or the United Nations Convention on the International Sale of Goods. Further, you and Linden Lab agree to submit to the exclusive jurisdiction and venue of the courts located in the City and County of San Francisco, California, except as provided in Section 12.1 regarding optional arbitration. Notwithstanding this, either party shall still be allowed to apply for injunctive or other equitable relief to protect or enforce that party's Intellectual Property Rights in any court of competent jurisdiction where the other party resides or has its principal place of business." And TOS (Sect 13.1): "13.1 Second Life is a United States-based service. Linden Lab makes no representation that any aspect of the Service is appropriate or available for use outside of the United States. Those who access the Service from other locations are responsible for compliance with applicable local laws. The Linden Software is subject to applicable export laws and restrictions."
  12. If you want to be sure that the seat has the same rotation when you arrive as it did when you started traveling, you could use rotation OldRot = llGetRot() before you start and llSetRot(OldRot) when you arrive.
  13. That is not a message from Linden Lab. I would not use it if someone sent it to me.
  14. The final parameter is the number of seconds that it should take to arrive at the target position, so the smaller the number, the faster the object has to go in order to get to the target. According to the LSL wiki, "The smallest functional tau is 0.044444444."
  15. There might be a couple of things going on. First, be sure that you're really in your own house. Linden Homes look pretty much alike, so it's easy to be mixed up and walk into someone else's place by mistake. (Don't laugh. It happens. :smileytongue: ) What's probably happening, though, is that you have run into a well-known bug >>> Problem of not being able to rez on my land continues SL's servers seem to be getting confused about where the edges of your parcel are, so they think you are trying to rez things on your neighbor's land. Until the techies fix the problem, the way to deal with it is to rez things as close to the middle of your parcel as you can. Try to rez a cube near the center of your house., If you fail, keep trying over and over and over until you find a spot where it works. You will be able to rez other things there too, and then drag them to wherever you want them.
  16. Without knowing more about your setup or the error message you may be getting, it's hard to know exactly what to recommend. In general, that sort of behavior is typical of a flaky Internet connection -- usually one that's flaky right at home. The generic advice, which works in a surprising number of cases, is to reboot your router and let it get a fresh hold on an IP address. Just unplug it from the power for a few minutes while you go for coffee. The other bit of generic advice is to avoid wireless, which can be problematic even on a good day for a lot of SL residents. Beyond those two standards, it is smart to check your firewall and antivirus programs to be sure that they haven't decided to block SL. An upgrade to either of them could suddenly make them misbehave. Take a good look at Nalates's blog for more in-depth suggestions about diagnosing and repairing your connection >>> http://blog.nalates.net/2011/10/26/troubleshoot-your-sl-connection/ If you have more specific details to add, or if you simply want to let us know whether anything we have suggested worked, click on the Options link in the upper right corner of your question and select EDIT. Please do NOT start a new thread.
  17. I haven't seen a viewer do this or the transparent Moire trick in your other post for a long time -- maybe three years. It used to happen for me in the old 1.23 viewer a lot. As I recall, it stopped when I updated my graphics drivers. I can't swear that's the solution, but you might give it a try. Nvidia Video Driver Latest driver Last checked Feb 6th- Windows: 285.62 (Oct 24) beta: 295.51 (Jan 31) - Linux: 290.1 (Nov 22)ATI Video Driver Latest driver Last checked Feb 6th- Windows and Linux: 12.1 (Jan 25)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.
  18. Yes, there is. You and many other people -- do a quick search of this forum to see loads of questions like yours -- are dealing with a bug that Linden Lab technicians are trying to fix >>> Problem of not being able to rez on my land continues Essentially what's hapening is that the servers can't tell where the edges of your parcel are, so they assume that you are trying to rez beyond them, on your neighbor's land. The workaround is to rez as close to the middle of your parcel as possible. Try rezzing a cube near the center of your parcel, and do it again and again and again until it works. When you find that spot, you will be able to rez other things there and then drag them to where you want them.
  19. The only way to tell whether something is overheating is to measure it. It's not good enough to just say that nothing seems to be overheating. What you are describing is a classic symptom of a computer that is trying to avoid self-destruction. Go on the Internet and Google "computer temperature software." There are some good, inexpensive programs -- and some free ones -- that will monitor temperature and will adjust your fan speeds to try and keep the machine cool. Before you even get the software, though, open the case of the computer now and use a can of air to blow out all the dust bunnies and cat hair. I do that regularly once every month or two. It's amazing how much gets in there. Overheating is serious business, and SL puts a heavy load on your system. If you don't do something about this now, you will fry your graphics card or worse.
  20. That's not the way you do it in LSL. If you want to change multiple prims, put your SLPPF command in a loop and change each child prim individually. Here's one way .... integer i = 10;while (i < 15){ llSetLinkPrimitiveParamsFast(++i, [PRIM_GLOW, ALL_SIDES, 0.9]);} A better way is to name your target prims something like "Glow" and then do this... integer i = llGetNumberOfPrims();while ( i ){ if (llGetLinkName(i) == "Glow") { llSetLinkPrimitiveParamsFast(i, [PRIM_GLOW, ALL_SIDES, 0.9]); } --i;}
  21. If you are the current owner, you can return anything that is on your land. It doesn't make any difference what the status of their owner is. You're just clearing the stuff from your area. If you have trouble, see if the sim owner can do it. If you're on the Mainland, submit a support ticket and let LL clean it up.
  22. Terceros los cambios de divisa utilizar la API de Linden Lab de riesgo para determinar si es seguro para ellos que le permite utilizar su servicio. Cuando la API de riesgo les dice que usted es un riesgo de crédito, se le puede decir que se niegan a aceptar su pedido. La API de riesgos puede haber estimado que tiene un mal historial de crédito, o puede haber un error. La mejor solución para usted es probablemente usar la Lindex en lugar de un intercambio de terceros. La oficina de Linden Lab, la facturación podría ser capaz de darle más información. Si usted tiene un problema de carácter no técnico relacionado con las preocupaciones de facturación, puede llamar al equipo de Linden Lab de facturación en los siguientes números gratuitos: US/Canada: 800-294-1067 France: 0805-101-490 Germany: 0800-664-5510 Japan: 0066-33-132-830 Portugal: 800-814-450 Spain: 800-300-560 UK: 0800-048-4646 Brazil: 0800-762-1132 De larga distancia (no es gratuito, pero se puede usar Skype para ahorrar un poco de costo): 703-286-6277 Nota **: El apoyo se ofrece sólo en Inglés
  23. I'm assuming that yours is http://my.secondlife.com/Gwendoline.Philbin . That worked for me when I looked at your profile just now.
  24. Yes. If you have full perms on any texture, including a snapshot, you just have to double click on it in inventory to open it, and then click Save Image to download it to your computer. (The words vary from one viewer to another, but the command is still the same and it's pretty obvious.) If you don't have full perms, though, you cannot download the image to your computer legally.
  25. The problem is that you haven't created a Received Items folder in your own viewer yet. Go to Marketplace and order a free item --- https://marketplace.secondlife.com/p/Direct-Delivery-Linden-Bear/3290638 or https://marketplace.secondlife.com/p/MAGIC-WAND-Stops-Animations/3475671 maybe. When you receive the item, your viewer will automatically create the Received Items folder. Then log out of SL and log back in again. You should be able to use the Merchant Outbox then. Review the instructions for setting up Direct Delivery at http://community.secondlife.com/t5/English-Knowledge-Base/Marketplace-Direct-Delivery-migration-guide/ta-p/1293139
×
×
  • Create New...