Jump to content

ObviousAltIsObvious

Resident
  • Posts

    762
  • Joined

  • Last visited

Everything posted by ObviousAltIsObvious

  1. merchant outbox project viewer has some fixes for this problem and some others like it. once you get the outbox fixed, it should be all right to move back to your preferred viewer. http://wiki.secondlife.com/wiki/Release_Notes/Second_Life_Project_Merchant_Outbox/3.6.13.284731
  2. If you aren't running a scheme that pays interest, you aren't going against any rules. http://wiki.secondlife.com/wiki/Linden_Lab_Official:Policy_regarding_inworld_banks
  3. A few places in the interface can use this extra markup. The text really looks like <icon>ForSale_Badge</icon> <icon>Icon_For_Sale</icon> [http://secondlife.com second life] Upcoming viewers are going to limit how much of this markup will work.
  4. I have found that it is usually fruitless to file JIRA tickets to LL unless you also pinpoint the cause of the problem and explain how to fix it. Even then a resolution can be delayed for years. For example, "advanced permissions" on inventory has been broken since 2009 and the fix is copy and paste.
  5. jwenting wrote: ObviousAltIsObvious wrote: You're right, the price tag icons are missing on adult land. I don't have a fix for you, but can confirm it's really broken. since when? Must be very recent indeed. More likely you're confused about buying and renting land. A lot of land on Zindra is not for sale, it's owned by a big land barron who rents it out at exorbitant fees, or alternatively will offer to set it for sale to you at even more excessive amounts. You are confused about the difference between colored tiles and icons. The icons are not rendered. There is logic in that part of the viewer that checks if the account has adult access enabled. I have not had time to see if that logic is broken, or if it is broken on the server side, but it is broken.
  6. You can use Ctrl for almost anything where it works in SL on the other operating systems. Cmd key is a popular way to bind functions to background programs, so the tip in the SL menus to use it instead of Ctrl can steer you wrong. There is one major exception for clicking, Cmd won't work at all. Use Ctrl+click to select items in a list, because Cmd+click is mapped to right-click in Second Life.
  7. The L$10 commission (5%) is what the marketplace took. The L$38 distribution is a 20% cut you are voluntarily giving to some other avatar.
  8. http://lists.berlios.de/pipermail/opensim-users/2013-February/011702.html
  9. Grest that you have it fixed. That was promoted to the released viewer today, so this should be the end of this problem.
  10. http://wiki.secondlife.com/wiki/Release_Notes/Second_Life_Release/3.6.13.284995 This viewer stops the cycle.
  11. Shaade Fallen wrote: Thanks for the quick reply. Nope, only one viewer that I know of. I have the chat.txt open now, however I don't see any 'Teleport completed from' lines. It's all just chat and random in-world events =( Yes, newer viewers don't record this in the chat log, it is now in teleport_history.txt
  12. You're right, the price tag icons are missing on adult land. I don't have a fix for you, but can confirm it's really broken.
  13. The zero has an advantage for a new scripter who tres things in chat. /0 Hi works and /PUBLIC_CHANNEL Hi teaches that these names are strange. Maybe that is why "Hello, Avatar!" still uses it.
  14. In OpenSim I forgot to turn the wing prims 90 degrees so that the flexi ends would be affected by gravity. The script looks like it is working the same as in SL now. The changes neede were very small, only to move the assignment to FLAPS: /* Change the gravity settings on flexi child prims named "WING" each second to simulate flapping.*/ // Gravity settings for the flapsfloat UP = 1.0;float DOWN = -1.0;float MID = 0.0;list FLAPS;// internal valuesinteger current_flap = 0;list WingIDs = []; list LinkedList(string Needle) { list Needles; integer Hay = 1; integer Stacks = llGetNumberOfPrims(); for(; Hay <= Stacks; ++Hay ) if(llGetLinkName(Hay) == Needle) Needles += Hay; return Needles;} default{ state_entry() { // Looping order of the flaps FLAPS = [ UP, DOWN, UP, DOWN, UP, DOWN, MID, MID, MID, MID ]; WingIDs = LinkedList( "WING" ); llSetTimerEvent( 1.0 ); } timer() { if ( current_flap >= llGetListLength(FLAPS) ) current_flap = 0; integer x = llGetListLength(WingIDs); integer y = 0; for ( ; y < x; ++y ) { llSetLinkPrimitiveParamsFast( llList2Integer( WingIDs, y ), [PRIM_FLEXIBLE, TRUE, 1, llList2Integer(FLAPS, current_flap), 0.0, 0.0, 1.0 , <0, 0, 0>]); } ++current_flap; }}
  15. rez: 0=cloud, 1=gray, 2=baked textures available, 3=baked textures all downloaded weight: same as Advanced>Performance Tools>Show Draw Weight for Avatars, http://wiki.secondlife.com/wiki/Mesh/Rendering_weight bytes: Total viewer memory used by attachments. Includes HUD attachments for your own avatar, not for others. area: estimated surface area of attachments. Again includes HUD for you, not others.
  16. Looks like it works OK in Second Life. It didn't compile as is on OpenSim 0.7.6 because of the variable refs in the global section. I moved that part down to state_entry to make it compile, the script runs but not much happens with flexi. I will try to dig more later.
  17. If you took them as a group then they could be jammed together in your inventory as a coalesced object.
  18. That's not fun. Your profile shows no payment information so it wasn't a premium starter home, unless you had it on another avatar?. If you got a free apartment from some other user, the place could be gone or given to somebody else by now. Land is expensive so really free houses don't usually stay around for long.
  19. https://secondlife.com/my/account/land.php will tell you where it is.
  20. I think they already got this one for new accounts, they now need payment info to open a marketplace store. The problem won't completely go away because phishing, phishing everywhere.
  21. If the picture is lewd she can AR it from inworld, "Indecency->Inappropriate content or conduct in a PG region". "Information in Resident profiles should be General."
  22. Imprudence and Phoenix aren''t totally compatible with Second Life any more. LL viewer, Firestorm, Singularity, Cool VL Viewer should work. Check TPV directory for more. Singularity might be a good one for you, if you still like the imprudence interface.
  23. "Take Copy" works and "Take" does not work, also happens if somebody is sitting on the object. Could this be part of the "stuck in sat upon" bug you are fixing in the RC?
×
×
  • Create New...