OsGetThreatlevel
De DigiWiki.
(Différences entre les versions)
(Page créée avec « <lsl> // ---------------------------------------------------------------- // Example / Sample Script to show function use. // // Script Title: osGetThreatlevel.lsl // Scri… ») |
|||
Ligne 16 : | Ligne 16 : | ||
// | // | ||
// Example of osGetThreatlevel(string key) | // Example of osGetThreatlevel(string key) | ||
- | // | + | // ---------------------------------------------------------------- |
+ | |||
default | default | ||
{ | { |
Version actuelle en date du 27 février 2014 à 03:05
// ---------------------------------------------------------------- // Example / Sample Script to show function use. // // Script Title: osGetThreatlevel.lsl // Script Author: // Threat Level: High // // Notes: See Script Source reference for more detailed information // This sample is full opensource and available to use as you see fit and desire. // Threat Levels only apply to OSSL & AA Functions // See http://opensimulator.org/wiki/Threat_level // ================================================================ // C# Source Line: public string osGetThreatlevel(string key) // Inworld Script Line: string osGetThreatlevel(string key); // // Example of osGetThreatlevel(string key) // ---------------------------------------------------------------- default { state_entry() { llSay(0, "FunctionThreatLevel = " + osGetThreatLevel("ThreatLevel")); } }