Jump to content

Galaxy Littlepaws

Resident
  • Posts

    157
  • Joined

  • Last visited

Everything posted by Galaxy Littlepaws

  1. Alright, I've been editing those changes in (modifying where needed) and it seems to work perfectly! Thank you so much.
  2. Alright, so for example changing link 5 would be: "llSetLinkTexture(5, OPEN, ALL_SIDES); " But how would I do both 5 and 6 at the same time? I'm not quite sure how to use LINK_ALL_CHILDREN yet and there are 8 linked prims total.
  3. Hello, I'm working on an object and trying to get two child prims (eyes) to blink using a texture changing script. I tried putting the script in both child prims and it worked, but they weren't in sync (due to the randomness of the blinking). My idea on solving that would be to modify the script to modify both child prims at the same time and place the script in the root prim. How can I modify this section to work on two linked prims? I'm sharing the section for context, but I really just need to know how to modify llSetTexture to the correct function. default { on_rez(integer startparam) { llResetScript(); } state_entry() { llSetTexture(OPEN, ALL_SIDES); // open llSetTimerEvent(llFrand(3) + 3); } timer() { llSetTexture(CLOSED, ALL_SIDES); // closed llSleep(llFrand(0.2) + .1); // sometimes blink a little faster, from 0.2 to 0.3 llSetTexture(OPEN, ALL_SIDES); // open llSetTimerEvent(llFrand(3) + 3); // make them blink randomly }
  4. Thanks! This is a great idea and I'll work on getting this setup ASAP.
  5. Hello, I have a breedable starter kit in my store for free that includes a small amount of starter food. One thing that I have noticed is that sometimes an avatar will buy 20+ copies of the kit, presumably to stock up on the food for free. I make money (not much at this point) by selling the food, so this is something I'd like to stop. They can still get starter pets for free individually. I was able to limit the number of purchases per avatar for the starter kit in-world with Caspervend, but I see no such option on the Marketplace. What should I do to allow people starting out to get the small amount of free food, and only that amount for free?
×
×
  • Create New...