User talk:Myst Leissa

From Second Life Wiki
Jump to navigation Jump to search

Question: What is a haiku? I'm so lost with these wiki things, I feel like I'm learning JScript for the first time again, even the transition to LSL wasn't *this* confusing. I wonder if I'm even using this page right? So a user talk page is supposed to be "How to improve the user"? Or am I misinterpreting the guidelines? Way I'm reading it the guidelines seem to leave an awful grey zone on one's own talk page, it makes some noise about not editing other users talk pages but it specifies "others" so I Don't know anyway here let's try some LSL to get my mind clear <lsl>

// Random Color Generator with Touch Return as Hovertext // Author: Myst Leissa // Notes: Probably not Even worth mentioning this script in the real world, it's completely barbaric.

vector RClr() {

 return < llFrand(1.0), llFrand(1.0), llFrand(1.0) >;

}

default {

  state_entry()
  {
     llSetTimerEvent(0.1);
  }
  timer() {
    llSetColor(RClr(),ALL_SIDES);
  }
  touch_start(integer tnum) {
    llSetText(llGetColor(ALL_SIDES),<1,1,1>,1);
  }

} </lsl>

Damn it was so much easier with the editor than in this backwards website. Myst Leissa 21:42, 3 July 2014 (PDT)