Jump to content

Tuu Munz

Resident
  • Posts

    11
  • Joined

  • Last visited

Everything posted by Tuu Munz

  1. "Investigating - We are currently undergoing unscheduled billing maintenance. While this maintenance is in progress, residents may be unable to use the cashier or to make purchases. Additionally, residents may have difficulty accessing certain features at this time, including the Marketplace and Skill Gaming Regions. We apologize for any inconvenience." https://status.secondlifegrid.net/
  2. I'm quite sure it's question about last weekends Grid Drive which went from south Sansara trough Bellisseria to Satori (there was one landing on water in the middle of the route). All necessary info of Grid Drives can be obtained here: https://www.driversofsecondlife.info/p/navigation-hud-how-to-and-history.html
  3. http://wiki.secondlife.com/wiki/LlRequestDisplayName Example: key owner_key; key owner_name_query; string owner_display_name; default { state_entry() { owner_key = llGetOwner(); owner_name_query = llRequestDisplayName(owner_key); } dataserver(key queryid, string data) { if ( owner_name_query == queryid ) { owner_display_name = data; llSay(0, "The display name of the owner of this script : " + owner_display_name ); } } }
  4. Only for members? Panquehue (88,73,501), "[15:02] Fnordian Security System 2.1: You are not authorized to be on this land, Tuu Munz. Please leave or you will be ejected in 320 seconds."
  5. You are right. There sure are many ways to handle this feature. But to use them, you have to be aware about it. And - shame to me - I haven't been. May be because I have under my years in SL wrote only simple scripts - switching lights on/off, changing colours and textures of prims, playing whit particles for my own fun, making simple menus, etc. But recently I have been playing with one opensource script and found out, that sometimes it does what it should do and sometimes doesn't. When I looked it closer, it seemed to me, that logic there were quite right, but that the aberration there must have something to do with the way LSL handles floats. I could fix the script so that I'm happy with it. But as I am curious person, I liked to know, why it worked as it did. Now I know. 😊
  6. Thank you all very much for comments! So this is a feature. (Allways nice to be today wiser than yesterday 😋.)
  7. LSL is calculating: default { touch_start(integer total_number) { float X = 0.10; float Y = 0.00; Y += X; Y += X; Y += -X; Y += -X; llOwnerSay("Y is " + (string)Y); if (Y > 0.000000) { llOwnerSay("Y is greater than 0.000000"); } else if (Y == 0.000000) { llOwnerSay("Y is equal to 0.000000"); } else if (Y < 0.000000) { llOwnerSay("Y is less than 0.000000"); } else { llOwnerSay("Sorry, I don't know."); } } } and gives response: [04:19] Object: Y is 0.000000 [04:19] Object: Y is equal to 0.00000 Ok. But when LSL is calculating: default { touch_start(integer total_number) { float X = 0.10; float Y = 0.00; Y += X; Y += X; Y += X; Y += -X; Y += -X; Y += -X; llOwnerSay("Y is " + (string)Y); if (Y > 0.000000) { llOwnerSay("Y is greater than 0.000000"); } else if (Y == 0.000000) { llOwnerSay("Y is equal to 0.000000"); } else if (Y < 0.000000) { llOwnerSay("Y is less than 0.000000"); } else { llOwnerSay("Sorry, I don't know."); } } } is response: [04:20] Object: Y is 0.000000 [04:20] Object: Y is greater than 0.000000 Is this a known bug (which I haven't known), or is this a feature? Or am I stupid?
  8. Thanks for comments, Kolby & Venus! The horses hasn't bothered me - but to be honest, I haven't had much time to be there lately, and when I have been there, I have usually taken one of my boats and enjoyed sailing around the open-ended Linden oceans...
  9. Wonderful place for sailing, boating, surfing, diving, swimming, etc. South-east corner of a sim by Linden oceans. This kind of place is rarely available!!! 4096 sq.m. 937 primitives Price 69999 L Price 59999 L http://maps.secondlife.com/secondlife/Loxich/235/12/23/
×
×
  • Create New...