Jump to content

VenKellie

Resident
  • Posts

    177
  • Joined

  • Last visited

Posts posted by VenKellie

  1. 17 hours ago, Jennifer Boyle said:

    I always use the script in a single prim, never in a linkset.

    I changed it to use llGetObjectName and deleted the line with llResetScript, and now it works.

    Thanks for the help, and please don't laugh too hard at me.

    not laughing at all. totally understandable for someone new to lsl to make that mistake. I've made many over the years while learning the language.

    • Like 1
  2. llResetScript(); << that throws the script into a reset loop when having it in the state_entry event.

    Also if u want the name of the root prim to display just use llGetObjectName() instead

    • Like 1
    • Thanks 1
  3. default
    {
    touch_start(integer num)
    {
         on = !on;
         if (on)
         {
              updateParticles();
         }
         else
         {
              llParticleSystem([]);
         }
    }
    }

    like that, welcome to scripting eh. ALL LSL events go into a state like default or

    state something { 
    listen(integer chan, string name, key id, string message) {
       llOwnerSay(message);
    }
    }

     

  4. On 12/23/2022 at 11:45 AM, Wulfie Reanimator said:

    This may or may not be vaguely related, but I would get pretty severe freezing while moving my camera (on an SSD and an i5-13600 CPU), until I changed the cache location to a different drive than my operating system.

    I would suspect Win11 as the problem, but there should be a lot more complaints if it was that simple.

    same issue regardless if i cache from my SSD or HDD.

×
×
  • Create New...