OsMakeNotecard
From OpenSimulator
(Difference between revisions)
Line 13: | Line 13: | ||
key id = llDetectedKey(0); | key id = llDetectedKey(0); | ||
string name = llKey2Name(id); | string name = llKey2Name(id); | ||
− | + | 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. |
Revision as of 16:40, 11 September 2011
void osMakeNotecard(string notecardName, list contents)
| |
Creates a notecard with text in the prim that contains the script. | |
Threat Level | High |
Permissions | No permissions specified |
Extra Delay | No function delay specified |
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); } } |