Jump to content

Raena Parx

Resident
  • Posts

    106
  • Joined

  • Last visited

Everything posted by Raena Parx

  1. Hello. I built this really nice train, linked everything, poseballs with animations. All the poses worked fine. Then i used puppeteer and animated the train moving on the track. Poseballs, everything moved fine together. BUT, when my avi hopped on the poseball, my train took off and left mei animating in mid-air. lol. I'm really a builder more than a scripter. Is there a simple code I could insert to make the llSitTarget update itself continually so it will move the avatar with the moving poseball? (BTW, the root prim has to be stationary or the train animation wont work) Below is the script I'm using on the poseballs. //***************************************** //* Nyterave animation ball script! * //* FREE TO USE V2.1 * //* by Sitting Lightcloud * //******************************************/ // * * * * * * * MODIFY BELOW * * * * * * *// // position to sit on the ball e.g <0.0, 0.0, 0.43> // sit 0.5 meter above the ball vector POSITION=<0,0,-.9>; // hovertext above ball. "" for none. // add '\n ' at the end to move text up i.e. // string HOVERTEXT="Sit Here\n "; string HOVERTEXT="RIDE"; // Pie Menu Sit Text. Will only work for the // main prim but included it anyway. If no text // is entered between "" it won't be used. string SIT_TEXT="RIDE"; // hovertext color 'r,g,b' e.g. "255,255,255" (white) string HOVER_RGB="255,255,255"; // LISTEN sets if this ball should listen for voice commands // or not. You only need to enable this for 1 ball if you // link several balls to an object. (to reduce lagg). // Change to TRUE to enable FALSE to disable. integer LISTEN=FALSE; // What channel to listen for hide/show on. If you want to // listen to normal conversation (hide/show), set channel // to 0 otherwise the command will be /channel hide, show integer CHANNEL=8; // * * * * * * * STOP MODIFY * * * * * * * *// set_text() { if (llStringLength(HOVERTEXT)>0) { rgb=llCSV2List(HOVER_RGB); llSetText(HOVERTEXT,<llList2Float(rgb,0)*0.003921568627450980392156862745098,llList2Float(rgb,1)*0.003921568627450980392156862745098,llList2Float(rgb,2)*0.003921568627450980392156862745098>,1.0); } else llSetText("",<0,0,0>,0.0); } start_listen() { llListenRemove(listener); if (LISTEN==TRUE) listener=llListen(CHANNEL,"","",""); } hide_me() { llSetAlpha(0.0, ALL_SIDES); llSetText("",<0,0,0>,0.0); } show_me() { llSetAlpha(1.0, ALL_SIDES); set_text(); } list rgb; string animation; integer listener; default { state_entry() { if (llStringLength(SIT_TEXT)>0) llSetSitText(SIT_TEXT); llSitTarget(POSITION, ZERO_ROTATION); set_text(); start_listen(); } on_rez(integer r) { start_listen(); } listen(integer channel, string name, key id, string msg) { if (msg=="hide") { hide_me(); llMessageLinked(LINK_SET,0,"hide", NULL_KEY); } else if (msg=="show") { show_me(); llMessageLinked(LINK_SET,0,"show", NULL_KEY); } } changed(integer change) { if (change & CHANGED_LINK) { if (llAvatarOnSitTarget() != NULL_KEY) { llRequestPermissions(llAvatarOnSitTarget(), PERMISSION_TRIGGER_ANIMATION); } else { integer perm=llGetPermissions(); if ((perm & PERMISSION_TRIGGER_ANIMATION) && llStringLength(animation)>0) llStopAnimation(animation); llSetAlpha(1.0, ALL_SIDES); set_text(); animation=""; } } } run_time_permissions(integer perm) { if (perm & PERMISSION_TRIGGER_ANIMATION) { llStopAnimation("sit"); animation=llGetInventoryName(INVENTORY_ANIMATION,0); llStartAnimation(animation); llSetAlpha(0.0, ALL_SIDES); llSetText("",<0,0,0>,0.0); } } link_message(integer sender_num, integer num, string str, key id) { if (str=="hide") { hide_me(); } else if (str=="show") { show_me(); } } }
  2. I paid $L9000 for tier for December in November. On Dec 5 the property managers sent out notice that they were no longer in business. My sim is erased, unaccessible. None of my items have been returned, including no-copy items. The old managers refuse to reply to my messages requesting refund for my tier payment. The secondlife help replied to me saying I have to file an abuse notice inworld. I did that, and have heard absolutely nothing? Can nothing be done for landlords who swindle their tenants? In reply to your answer, I have been renting from these landlords for three years. Then suddenly, POOF. Thank you for your suggestion, I will try to get my items back how you mentioned. But am still out $L9,000.
  3. After migrating to Direct Delivery, and deleting my magic box in-world, all the "magic box" items were still shown as Unassociated. Deleting took an hour cause I was only able to delete ten listings at a time. But they were all gone and all was good. However.... The next day I recieved an email that I may be losing sales because they are ALL unassociated. So I logged back on to marketplace, and to my suprise ALL my magic box items were there again. Three questions: 1) Am I losing sales if all the Direct Delivery items are listed? Or was the email probably automatic in response to the "magic box" items showing up again? 2) How do I make the "magic box" items STAY deleted? No idea why they came back. 3) Do I have to spend another hour deleting the "magic box" items again? When I Select ALL then delete, a new screen comes up and says "sorry for the delay...bla bla bla". Then when i come back, only ten or less items have been deleted. Please help!
  4. thank you so much. i've looked there before but guess since there's no dividing line above it, it blended in with the inventory list so i didnt even see it. thank you again for your help!!!
  5. The old viewer used to have options in the inventory window. one of those was to open a second inventory window which made organizing sooooooooo much easier. However in viewer 2 these options are not there. Can you please tell me how to open a second inventory window in viewer 2? Thank you.
×
×
  • Create New...