OsMakeNotecard

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m (some format conversions)
m (XEngine to OSSL)
 
(9 intermediate revisions by 7 users not shown)
Line 1: Line 1:
 
{{osslfunc
 
{{osslfunc
 
|threat_level=High
 
|threat_level=High
|function_syntax=osMakeNotecard(key id,string contents)
+
|permissions=${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
 +
|delay=0
 +
|function_syntax= osMakeNotecard(string notecardName, list contents)
 +
 
 +
osMakeNotecard(string notecardName, string contents)
 
|ossl_example=<source lang="lsl">
 
|ossl_example=<source lang="lsl">
//
+
// osMakeNotecard example by Tom Earth
//osMakeNotecard example
+
//By Tom Earth
+
  
 
default
 
default
Line 13: Line 15:
 
         key id = llDetectedKey(0);
 
         key id = llDetectedKey(0);
 
         string name = llKey2Name(id);
 
         string name = llKey2Name(id);
         string contents; //The variable we are going to use for the contents of the notecard.
+
         list contents; //The variable we are going to use for the contents of the notecard.
         contents += "Name: "+name+"\n";
+
         contents += ["Name: "+name+"\n"];
         contents += "Key: "+(string)id+"\n";
+
         contents += ["Key: "+(string)id+"\n"];
         contents += "Pos: "+(string)llDetectedPos(0)+"\n";
+
         contents += ["Pos: "+(string)llDetectedPos(0)+"\n"];
         contents += "Rotation: "+(string)llDetectedRot(0)+"\n";
+
         contents += ["Rotation: "+(string)llDetectedRot(0)+"\n"];
 
          
 
          
 
         osMakeNotecard(name,contents); //Makes the notecard.
 
         osMakeNotecard(name,contents); //Makes the notecard.
Line 26: Line 28:
 
}
 
}
 
</source>
 
</source>
|description=
+
|description=Creates a notecard with text in the prim that contains the script. Contents can be either a list or a string.
 
|
 
|
 
}}
 
}}

Latest revision as of 07:36, 7 November 2019

osMakeNotecard(string notecardName, list contents)

osMakeNotecard(string notecardName, string contents)

Creates a notecard with text in the prim that contains the script. Contents can be either a list or a string.
Threat Level High
Permissions ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
Extra Delay 0 seconds
Example(s)
// osMakeNotecard example by Tom Earth
 
default
{
    touch_start(integer n)
    {
        key id = llDetectedKey(0);
        string name = llKey2Name(id);
        list contents; //The variable we are going to use for the contents of the notecard.
        contents += ["Name: "+name+"\n"];
        contents += ["Key: "+(string)id+"\n"];
        contents += ["Pos: "+(string)llDetectedPos(0)+"\n"];
        contents += ["Rotation: "+(string)llDetectedRot(0)+"\n"];
 
        osMakeNotecard(name,contents); //Makes the notecard.
 
        llGiveInventory(id,name); //Gives the notecard to the person.
        llRemoveInventory(name);
    }
}
Personal tools
General
About This Wiki