Jump to content

CampSoup1988

Resident
  • Posts

    13
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Ahhh, I totally overlooked that! Thank you
  2. I dont see how you could modify ListItemReplace to search by index instead of the content of the list
  3. As far as I know, I dont think my idea would even be possible then, since I dont have a fixed size for the list and to be honest, I would naturally have done DonationTotal[current]+=ammount;
  4. So I have to replace the entire list.... I was kind of hoping to avoid that as in reality the list would be a lot longer then just three varaible. Actually it is open ended depending on how many staffers are added to the list And yes, I had previously dug deeply into that wiki.
  5. Ok, lets say I want to track the donations of three people. I have a variable called DonationTotal which stores [0,0,0] I have tried a number of ways to update lets say the second number in the list, but I keep getting errors. Oh, and Current has the integer 2. These are the different methods I have tried and their errors: llList2Integer(DonationTotal, Current) += amount; but I got: The left-hand side of an assignment must be a variable, property or indexer DonationTotal[current] += amount; and got: Expected ; or = (cannot specify constructor arguments in declaration); expectedInvalid expression term '+='; expected I also tried a few other similar combinations, which got me the same results of those previous two attempts. If anyone has any advice, I would be greatly appreciated! Thank you, CampSoup1988
  6. Ah, I was trying to cast it as a key wrong, I think. I had previously tried (key)[data] before coming to the forum. I shall give that a try
  7. Ok, ill give that a try, the keys are read from a notecard, then read into a list
  8. Ok, i am trying to compare a list of keys and trying to match the person clicking on the object to someone on the list key dk; list UserList; //stuff happens dk = llDetectedKey(0); if(llListFindList(UserList,(list)dk) >= 0){ //stuff happens if user is on the list } Even though the UUID of the person is clicking, the llListFindList reports -1 Can someone help me? Thank you, CampSoup1988
  9. Ok, Ill look at the first link. I started reading the wiki, and the first example gave me errors with what i wanted and the other ones seemed too complicated
  10. I am trying to write a script that reads a list of keys into a list in the script from a notecard. For an example, I have the notecards called CardA, CardB, & CardC, and I have a list called ListA, ListB, ListC, where CardA is copied into ListA, etc. Thank you in advance, CampSoup1988
  11. Ah, its not very detailed, just a bell colar. I mostly want to make the bell be able to move if the user is like running and suddenlhy changes directions or jumps, or like that
  12. basicly i want to make a collar that could jerk a bit from movement and such, so it wouldnt be moving all that much
  13. In risk of sounding like too much of a newbe, I have a question for you all. I know Torus can't be set to be flexible, but could you create a script for the shape to intimate flexible? I wanted to know as I already designed the object with a torus and having trouble converting it into a cylinder. Thank you, CampSoup1988
×
×
  • Create New...