diff options
Diffstat (limited to 'linden/indra/lscript/lscript_library/lscript_library.cpp')
-rw-r--r-- | linden/indra/lscript/lscript_library/lscript_library.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/linden/indra/lscript/lscript_library/lscript_library.cpp b/linden/indra/lscript/lscript_library/lscript_library.cpp index 594a001..14019d0 100644 --- a/linden/indra/lscript/lscript_library/lscript_library.cpp +++ b/linden/indra/lscript/lscript_library/lscript_library.cpp | |||
@@ -29,7 +29,15 @@ | |||
29 | * $/LicenseInfo$ | 29 | * $/LicenseInfo$ |
30 | */ | 30 | */ |
31 | 31 | ||
32 | // *WARNING* | 32 | |
33 | // ## ## ### ######## ## ## #### ## ## ###### #### #### | ||
34 | // ## ## ## ## ## ## ## ### ## ## ### ## ## ## #### #### | ||
35 | // ## ## ## ## ## ## ## #### ## ## #### ## ## #### #### | ||
36 | // ## ## ## ## ## ######## ## ## ## ## ## ## ## ## #### ## ## | ||
37 | // ## ## ## ######### ## ## ## #### ## ## #### ## ## | ||
38 | // ## ## ## ## ## ## ## ## ### ## ## ### ## ## #### #### | ||
39 | // ### ### ## ## ## ## ## ## #### ## ## ###### #### #### | ||
40 | // | ||
33 | // When adding functions, they <b>MUST</b> be appended to the end of | 41 | // When adding functions, they <b>MUST</b> be appended to the end of |
34 | // the init() method. The init() associates the name with a number, | 42 | // the init() method. The init() associates the name with a number, |
35 | // which is then serialized into the bytecode. Inserting a new | 43 | // which is then serialized into the bytecode. Inserting a new |
@@ -431,6 +439,8 @@ void LLScriptLibrary::init() | |||
431 | 439 | ||
432 | addFunction(new LLScriptLibraryFunction(10.f, 0.f, dummy_func, "llGetObjectDetails", "l", "kl", "list llGetObjectDetails(key id, list params)\nGets the object details specified in params for the object with key id.\nDetails are OBJECT_NAME, _DESC, _POS, _ROT, _VELOCITY, _OWNER, _GROUP, _CREATOR.")); | 440 | addFunction(new LLScriptLibraryFunction(10.f, 0.f, dummy_func, "llGetObjectDetails", "l", "kl", "list llGetObjectDetails(key id, list params)\nGets the object details specified in params for the object with key id.\nDetails are OBJECT_NAME, _DESC, _POS, _ROT, _VELOCITY, _OWNER, _GROUP, _CREATOR.")); |
433 | 441 | ||
442 | addFunction(new LLScriptLibraryFunction(10.f, 0.f, dummy_func, "llSetClickAction", NULL, "i", "llSetClickAction(integer action)\nSets the action performed when a prim is clicked upon.")); | ||
443 | |||
434 | // energy, sleep, dummy_func, name, return type, parameters, help text, gods-only | 444 | // energy, sleep, dummy_func, name, return type, parameters, help text, gods-only |
435 | 445 | ||
436 | // IF YOU ADD NEW SCRIPT CALLS, YOU MUST PUT THEM AT THE END OF THIS LIST. | 446 | // IF YOU ADD NEW SCRIPT CALLS, YOU MUST PUT THEM AT THE END OF THIS LIST. |