Jump to content

Gayngel

Resident
  • Posts

    183
  • Joined

  • Last visited

Reputation

65 Excellent

Recent Profile Visitors

1,291 profile views
  1. You can do this with a Corrade bot or Smartbot. Corrade is free, Smartbot is a weekly paid subscription. You will have to look at their API documentation.
  2. You can store links by name. integer link1; integer link2; integer link3; integer link 4; default { state_entry() { integer total = llGetNumberOfPrims(); integer i; for(i = 0; i < total; ++ i) { integer link = llGetLinkName(i); if(link == "Link1") link1 = i; else if(link == "Link2") link2 = i; else if(link == "Link3") link3 = i; else if(link == "Link4") link4 = i; } } } Note: This is only a very basic example, there might be better ways to store links like in a list or linksetdata if that's what you need.
  3. You don't need the Google Cloud Platform. You just need a Google App Script as a go-between your LSL script and your Google Sheet. Google App Script is free and easy to use if you know Javascript. I've used a Google App Script to a Sheet for about 10 years and haven't had to pay a penny.
  4. That is how it's supposed to work but on the ground it really doesn't. All the bot does is give you the run around trying a million fixes you've tried before and then tells you to e-mail support where you waste more time going back and forth when really the issue can be resolved or logged as a bug to be fixed in 5 minutes if you could just speak to a person in live chat or a phone call, its frustrating as hell dealing with support bots.
  5. Just read the year in review post and just want to say please please please Linden Labs do not relegate support to an AI chatbot! Every company that has done this has the worst customer service!
  6. You can also look at using the linkset_data event of Linkset Data instead of link messages and filter for what data was added or changed.
  7. This set of scripts is a basic example of how to store a URL of a server prim to a spreadsheet which can be retrieved from a client prim: Google App Script: https://pastebin.com/HRh49Haq Server Prim script: https://pastebin.com/65kkFsDW Client Prim Script: https://pastebin.com/UYJtu22J
  8. Since I can't make edits to posts when needed please read this document to hire me: https://docs.google.com/document/d/1kjJbJH4JmXXE07sXj6vkM_wXDy0o9q--nn_2oA93jzc/edit?usp=sharing Make a booking here: https://forms.gle/NsSikWmQaUFLz6xN7&nbsp; Testimonials (see comments):
  9. All my rental systems are going crazy here. "***Error*** Maybe the system is in maintenance. Please try again later."
  10. I've got hundreds of items listed on one of my stores. When there's a sale I don't want to go through each listing and edit the price to half off or whatever percentage I want to knock off, that's too painstaking. There should be a button somewhere to select % off all items for a certain amount of time. Please make it easier for us Lindens!
  11. Well that's where the new functions llLinksetDataCountFound & llLinksetDataDeleteFound will be useful.
  12. It's not bad per se, just not as efficient as getting them all at once.
×
×
  • Create New...