Jump to content

hidden Loon

Resident
  • Posts

    58
  • Joined

  • Last visited

Reputation

8 Neutral

Recent Profile Visitors

511 profile views
  1. Basically if it says llSay(0, "step1"); //start moving llSleep(0.0001); llSay(0, "step2"); llSleep(0.0001); llSay(0, "step3"); llSleep(0.0001); llSay(0, "step4"); I want it to loop back to "step1" and say the rest of the lines ( 2, 3, 4 etc) and then repeat back to 1 until I say a command to make it stop
  2. I am making a staff and I want certain parts of it to move up and down. I am probably going about this the long way, but right now I have a script that says a command and it makes the child prim move. However, I was wanting to know how to make it loop the text string? This is what I have now: integer LISTENER_CHANNEL = 0; string ON_COMMAND = "vis"; string OFF_COMMAND = "invis"; integer OWNER_ONLY = TRUE; key my_owner = NULL_KEY; default { on_rez(integer n) { llResetScript(); } state_entry() { if ( OWNER_ONLY ) my_owner = llGetOwner(); llListen( LISTENER_CHANNEL, "", "", "" ); } listen( integer chan, string name, key target_id, string mesg ) { if ( OWNER_ONLY ) { if ( target_id != my_owner // Check the identity of the speaker && llGetOwnerKey(target_id) != my_owner ) { // check ID of the speaking prim's owner return; // skip the rest of this listen() block. } } if ( mesg == "vis" ) { llSay(0, "step"); //start moving llSleep(0.0001); //I want it to seem seemless but not instant movement llSay(0, "step"); ******** //maybe loop right here back to the start of the movement } else if ( mesg == "invis" ) { llResetScript(); //make it stop looping? } } } Below is the script for the child prim to move: turn() { llSetText("turn", <1,1,1>, 1); rotation smallAngle = llEuler2Rot(<0,0,15>*DEG_TO_RAD); rotation newRot = smallAngle*llGetLocalRot(); llSetLocalRot(newRot); } step() { llSetText("step", <1,1,1>, 1); vector forward = <0.1,0,0>; // short step on X vector toMove = forward*llGetLocalRot(); // point as I point vector newPos = llGetLocalPos()+toMove; llSetPos(newPos); } process(string message) { if ( message == "turn") { turn(); } else if ( message == "step" ) { step(); } else { llWhisper(0, "impossible"); } } default { state_entry() { llListen(0, "", "", "turn"); llListen(0, "", "", "step"); } listen(integer channel, string name, key id, string message) { process(message); } } Any help would be appreciated. Thanks!
  3. First, let me thank everyone for their responses! It has greatly helped me. Second, What changes are coming? I feel like I should know before making my decision...thank you!
  4. Ok so, then how would I go about getting or "keeping an eye out" for new linden homes? As for the mainland, the price for the 1024 I have to cover myself but then second life waives the monthly fee thereafter? Just want to make sure I am reading this correct!
  5. Hello everyone! After years of being on second life, I am looking at becoming a premium member. I had a few questions about the land that is given to us. First let me ask about the land that is not mainland. They give us a house and so many prims and that is it. From my understanding the site says 512sqm and like 117 prims. I am now seeing where premiums are getting 1024sqm and like 175 prims. Is this accurate? Also, are we allowed to demo the house and place something we have that has less Land impact so we can get more prims? Or is the amount of prims we get regardless of the house? Second, I also saw on the webpage that we can upgrade our land to mainland plots and they waive the fee...since nothing is free, do I have to pay weekly/monthly for this land? Can I place my own house on it and how many prims are we allotted? I could not find any answers to these questions. Finally, can I put either of those 2 options on the search page if I decide to convert my linden home into a store? Thank you guys so much in advance!
  6. Okay, so I have not been on in a long time. Like, months/years (actively). One of my friends gave me lindens out of the blue randomly when I got on. Kinda acted a little weird around why she gave me it. It was only 1,000L. Dont get me wrong, I appreciated it and was happy. However, I always question things...I told my friend and she said Linden labs can ban you if someone gave you lindens they got through bad means...will I get banned if this is infact,"tainted money"??? Or am I just being too paranoid and just accept the gift?
  7. Bump. I am still in need of assistance.
  8. It seems my problem was as simple as the answer. Thank you everyone for your help! As for Yulyhigh that chat does not pertain to me and my store. It says "Casper Warden" and why that is here I am unsure. Thanks everyone!
  9. Hey everyone, I was looking for a mesh avatar on the marketplace where I was then prompted that I could not view adult content. Now I am verified and can view adult content in-world. I would like to be able to view the content under the adult tab but have no idea how to manage that setting.
×
×
  • Create New...