Jump to content

Abnor Mole

Moles
  • Posts

    842
  • Joined

  • Days Won

    5

Everything posted by Abnor Mole

  1. Unfortunately, perpetually hosting homestead water regions is not free. If it were we would already have filled those parts of grid with a huge ocean, but that isn't going to happen. There has to be compelling justification for the cost of every homestead we make and the overhead costs it incurs. We came up with a creative way to connect to the existing protected waterways for you that only required a small handful of them. yw ¯\_(ツ)_/¯
  2. https://modemworld.me/2020/04/21/tutorial-environment-enhancements-project-eep/
  3. You can change the environmental settings of a parcel. Of course, your visitors can always override that in their viewer and any scripted objects that read time of day will read the region environment, not the parcel environment, but yes... you can do that with applying a custom daylight cycle to the parcel in About Land.
  4. "Opened" isn't necessarily the term I would use. There is a place you can take off and land and it is "open" as in you can go there, but that whole area is still under construction. Keep that in mind.
  5. On Land. If the center of the parcel is land, it is On Land. If the center is water it is On Water. Edit: On Land Houses have stairs to the front door. On Water do not.
  6. If private parcel owners were able to cooperate and had set their land to allow for a pathway along the coast for travelers there wouldn't have been a need to bypass that area in the first place. They could have done that already when Bellisseria was connected to the mainland the south and they still can. They haven't done that because there is no guarantee that any one person along that route could not shut off access at any moment. Simply having a vestigial strip of protected coastline does not warrant adding 4, 2, or even one region at that location for the same reason. Sadly, such a connection would most likely only ever benefit the owners of the land directly bordering that region and them alone. Everyone along that edge can still can have open access to the water to the south if they can all agree, and there is nothing stopping you from approaching them to see if they are open to coming to a mutually beneficial agreement to do so. I wish you luck with that because all it takes is one person to say no.
  7. Hmmm. Considering that would essentially involve moving and redoing everything on at least half the region... including terraforming, parcels, infrastructure, and every bit of content squeezed by the widening of the waterway... AND another full QA pass... If the question is "Are we going to take a region that is completed, done and ready for release to make a water channel a few meters wider?" Let me see...
  8. 🤫 Shhhh... don't tell anyone about this new feature. 😉 (Choosing "Restrict gesture and objects sounds to this parcel" works both ways. It keeps the sounds on your parcel within your parcel, and it will also keep you from hearing any and and all sounds from outside your parcel as well.)
  9. The lost wallet thing was just my idea as a way to make something fun and interesting if residents stumble upon one. Not all the Moles may do it that way. It's up to the individual if/how/when they give out their trading cards.
  10. No one every said that being a paying customer excuses anyone from following the rules or that "the customer is always right" (because they most definitely are not). It's just a little thing called Hanlon's Razor. "Never attribute to malice that which can be adequately explained by neglect, ignorance or incompetence." It is probably one of the most powerful ideas you can keep in your mental toolbox. If you're working in customer service especially, it is something that can help you maintain your sanity and keep from becoming jaded and cynical as well as providing a better customer service experience.
  11. In my experience Governance always assumes ignorance before malice, so unless they are certain a person is aware of the rules and is still willfully flaunting them they generally just warn the person. That isn't necessarily taking it lightly. It's giving a resident (who is a paying customer after all, like most of us are) the benefit of the doubt. I think that's preferable to heavy handed ham fisted punishment under an "ignorance of the law is no excuse" policy. That means if they do find out they are doing it again they cannot play the "Sorry, I didn't know" card anymore, but I don't think there are enough hours in the day to do follow ups on every person they give a warning to and check up on them.
  12. Mole trading cards are a thing and they are something new. Each Mole makes their own (keep in mind not everyone has done one yet). Some Moles will make multiple ones or special ones or seasonal ones, and we can give them to residents. Think of them like Mole Bears, just easier to rez or wear (and lower LI). I usually keep one in my wallet... I just tend to keep misplacing it.
  13. I went surfing yesterday in Bellisseria when I took my lunch break and I can't find my wallet. If anyone finds it can you click on it and return it to me? Thanks.
  14. Horizons is part of the Zindra continent the way Bay City is part of the Sansara continent.
  15. Likely possible scenario: Sign was returned and resident was politely informed renting out a linden home is not allowed. Resident ignored the warning and put the sign back up. Governance figured the matter was closed because nobody reported it was back up.
  16. So.. something that is against the covenant and detrimental to the experience is happening... sooo... we should make it... easier? 🤔 If you have irrefutable proof I encourage you to abuse report the persons doing this. Yes, I know it's difficult to prove, but anyone caught renting out their Linden Home(s) as a business to make L$ runs the risk of serious consequences.
  17. I don't believe the Premium Plus perk of being able to request being assigned an unclaimed parcel location was ever intended for the purpose the OP is describing: i.e the trading of a specific Linden Home parcel between two residents. Nor do I personally think that is something that we really want to consider as a desirable function of the system for a very good reason. The random nature of parcel assignment does something very important in regard to Linden Homes, it prevents them from becoming a commodity that can be bought and sold between residents. The Premium Plus perk of being able to request an unclaimed parcel is a great benefit but there is not a guarantee that you will get that parcel, even if the person immediately releases it and the ticket is responded to in a timely manner (as the OP discovered). If there were an implied guarantee it now sets up the possibility that an exchange price could be agreed to beforehand, opening a back door for parcels to be bought and sold. I don't think that would be a good thing personally.
  18. Not really. Sounds more like a nightmare really. Like being told to mate the back half of a school bus with a Ferrari "but make it look really cool or people won't want to buy it."
  19. When you build a continent encompassing a couple thousand regions you can tell me just how quick and easy it all is.
  20. integer Count; string Max; integer prims; integer warn = 750; integer cutoff = 500; string maxmsg = "Max deco LI for this region is "; string premsg = "\n \n Deco Budget left on main parcel\n \n"; check() { Count = llGetParcelPrimCount(llGetPos(),PARCEL_COUNT_TOTAL,FALSE); Max = llGetObjectDesc(); prims = (integer)Max - Count; if (prims < cutoff) { llSetText( maxmsg + (string)Max + premsg + (string)prims,<1.0,0.0,0.0>,1.0);} else if ((prims >= cutoff) && (prims < warn)) { llSetText( maxmsg + (string)Max + premsg + (string)prims,<1.0,1.0,0.0>,1.0);} else if (prims >= warn) { llSetText( maxmsg + (string)Max + premsg + (string)prims,<0.0,1.0,0.0>,1.0);} } default { state_entry() { llSetTimerEvent(1.0); } touch_start(integer total_number) { check(); llResetScript(); } timer() { check(); } }
  21. We'd have to call them "Linden Homesteads" and that would be at a whole different price point. Edit: No, that is not a thing
  22. The color codes on borders are a communication tool for Moles to know what the status of a region is and yes, it changes or we sometimes have added others. What is important is that we know what they mean. From a resident standpoint the take away should be that if it has a border of any color the region is unreleased and still requires more work before that can happen.
×
×
  • Create New...