Jump to content

rasterscan

Resident
  • Posts

    1,427
  • Joined

  • Last visited

Everything posted by rasterscan

  1. Just because some information is 5 years old or more it does not render said information irrelevant nor redundant. If said information becomes fashionable or pertinent at a later date then so be it. imhfo.
  2. First week ? I was stood in a sandbox trying to get a box off my head. Got chatting to a lovely lass who asked if we could kiss and told me lots about SL. Could'nt believe my luck. Two years later and I was informed I had been bitten by a vampire and it cost me 650$L to buy a green potion to get my soul back. I paid it.
  3. I've always wondered what the bridge is for. Thanks Selene. I will detatch it and see if it helps prevent so many crashes I suffer these days. I doubt it but anythings worth a try
  4. Nice click bait laughs ! Your'e not an LL employee perchance ?
  5. It terrifies me how many of you are willing to discard 'the other sizes' or 'the other makes' Who hasn't wanted to change size and shape from time to time, but no longer has the M L and XL sizes after a thorough spruce up of the inv ? Gutting and expensive. I work on a 'keep all sizes just in case' basis. Plus two backups of everything.
  6. Who's got the biggest inventory ? Own up. I'm at an eye watering 25,664 items Going to organise it one day.
  7. Are there any internal scripts, textures, or items inside the object ? If there are, check / set their perms too
  8. Ouch from the link - Today's peak is 18 and average is 8 people
  9. If you lose a (no copy) item upon a failed rezzing simply relog and it'll be back in inv. Secondly NEVER rez onto mesh - the results can be unpredictable. Create a good old fashioned prim and rez onto that.
  10. LMFAO ! You have me quaking in my boots with fear sir.
  11. https://marketplace.secondlife.com/p/INVISIBILITY-CLOAK-HUD-HEAD-SITTER-Hide-Avatar-Hide-Name-Tag/6447741 Great in lagged out malls n stuff Although it cannot hide anyone from this http://wiki.secondlife.com/wiki/Online_Indicator
  12. Can you make her eat the bratwurst and repost pic ? TY.
  13. Start a RUTH group flash mob. Arrive en masse at events. With sculpted bratwurst. It'd be a hoot ! No ? ok . I might make my own animesh Ruth army now.
  14. Sound advice. That's where it went wrong for me. I was snapping and snarling at LL right here in the forum and all the time my request for information email was sat in my spam folder. The embarrassment was excruciating. LL were very forgiving given my attitude at the time. I did of course apoligise profusely
  15. Quick Prefs to lower lag ... Draw distance makes a handy anti lag quick fix. lowest for clubbing, I whack it to 256 when sailing. Also Avatars slider helps me. 4 max, the rest rendered in 2D if its packed oh and name tags off. Lastly, for some weird reason this PC like working in 'Atmos 6' mode and its pretty too. I just keep the slider around 'noon' Lastly I've spotted a 'low lag' button in this pic I never noticed inworld ! Wonder what it does !
  16. firestorm > developer > avatar > character tests > test female and there she is ...
  17. OK. Think of a number between 1 and 50. I can run that in my mind and pick apparently random numbers easily. So .... seems random to me ?
  18. cardlist += card; ... What is the += signifying mathematically ? Please. changed(integer ch) ... Wahhh. changed hasn't been declared as a float integer or string. I dont get it. Help ?
  19. ikr. the Rand function has fascinated me for 30 years when I first learnt BASIC. Starts with a 'seed' that much I can just about remember
  20. Oh I love that idea. And its feasible mathematically I've seen it done in lsl scripting. But I am a mathematics weakling and cannot toss off a 'dont use that number until the other numbers are used once' routine. Although I will mull it over
  21. Lets talk about llFrand, shall we ? I was using it to fire random quotes from a list. Then I began to wonder just how even the distribution curve would be over a number set from zero to 10, for example, with 100 sample random number generations. Here's the script. If you do anything interesting with it please share ! Especially in the way of shrinking it down and tidying it up. // llfrand results integer totalruns;//total script runs integer zc; //total zeroes integer ones; integer twos; integer threes; integer fours; integer fives; integer sixes; integer sevens; integer eights; integer nines; integer tens; default { // reset script when the object is rezzed on_rez(integer start_param) { llSetText("Click to study llFrand(11) \nNumber distribution",<1,1,1>,1); llResetScript(); } touch_start(integer total_num) { // llPlaySound("beep",1); llSetText("Running .. ",<1,1,1>,1); llSetTimerEvent(0.25); //totalruns + 1; } // Every 1 secs timer() // what to do every .25 secs { integer dicenum = (integer) llFrand(11); //min 0 max 10 totalruns++; if (totalruns == 100){llSay (0, "\n100 runs completed"); llSetTimerEvent(0);llSetText("Click to study llFrand(11) \nNumber distribution",<1,1,1>,1); llResetScript();} llSay(0, "\n-------------------------\nllFrand(11) = " + (string)dicenum + ". Runs = " + (string)totalruns + "\n----------------------" + "\nTotal Zeros = " + (string)zc + "\nTotal Ones = " + (string)ones + "\nTotal Twos = " + (string)twos + "\nTotal Threes = " + (string)threes + "\nTotal Fours = " + (string)fours + "\nTotal Fives = " + (string)fives + "\nTotal Sixes = " + (string)sixes + "\nTotal Sevens = " + (string)sevens + "\nTotal Eights = " + (string)eights + "\nTotal Nines = " + (string)nines + "\nTotal Tens = " + (string)tens ); //llSleep(0.2);//tiny pause //WE GOT A ZERO ! if (dicenum == 0) {zc++;} // UP ZC BY 1 if (dicenum == 1){ones++;} //up ones by 1 if (dicenum == 2){twos++;} //up ones by 1 if (dicenum == 3){threes++;} //up ones by 1 if (dicenum == 4){fours++;} //up ones by 1 if (dicenum == 5){fives++;} //up ones by 1 if (dicenum == 6){sixes++;} //up ones by 1 if (dicenum == 7){sevens++;} if (dicenum == 8){eights++;} if (dicenum == 9){nines++;} if (dicenum == 10){tens++;} } // timer function over }//scripts done finito ended https://gyazo.com/22f10b6e20d28fdf08aca82e5cfdac4e
  22. ikr. If they ate mud half the planet wouldn't be conducting their affairs whilst wearing paper masks these days
  23. Let them eat mud. No. Seriously. Helps them develop the antibodies.
×
×
  • Create New...