Jump to content

scottdolphin

Resident
  • Posts

    7
  • Joined

  • Last visited

Everything posted by scottdolphin

  1. Thanks for the response Chic. I appreciate the clarification.
  2. Can I export my parcel and/or transferrable items on my parcel as an .oar? I have a region in Kitely and the SL market has some well designed transferrable sculptures I would like to use.
  3. Thank you. I REALLY appreciate this. I am trying to cover a lot of ground in a very short span of time for this project.
  4. BTW...I am using this on the root hinge prim. The door was created by another user and I have added the above rotate script
  5. so this is my open and closed script. Where would I put the password text box? I keep getting syntax errors default //initially closed { touch_start(integer num_detected) { state open; } } state open { state_entry() { rotation r1 = llEuler2Rot(<0.0,0.0,90.0> * DEG_TO_RAD); llSetRot(r1 * llGetRot()); } touch_start(integer num_detected) { state closed; } } state closed { state_entry() { rotation r2 = llEuler2Rot(<0.0,0.0,-90.0> * DEG_TO_RAD); llSetRot(r2 * llGetRot()); } touch_start(integer num_detected) { state open; } }
  6. I have been looking for a simple password door script with an autoclose function. Does anyone have any suggestions. I could also use a badge access script that will allow users to enter certain areas only if they are wearing the correct 'badge' or combination of 'badges'. I am building a gamified immersive curriculum and need to create areas that can only be accessed once specific tasks or assignments are complete. I have a general grasp of LSL and can script simple functions but use small words please...🙂
×
×
  • Create New...