aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Common/OSSL_BuilIn_Commands_Interface.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove Common/LSL_Types.cs. Both script engines now use a single versionMelanie Thielker2008-09-231-0/+1
| | | | | | | | of the types, located in OpenSim/Region/ScriptEngines/Shared/LSL_Tyoes.cs Also changes the compiler in DotNetEngine to use that. You _will_ need to let your region recompile all your scripts!
* Mantis#2197. Thank you kindly, Tyre, for a patch that:Charles Krinke2008-09-151-0/+4
| | | | | adds the new function osTeleportAgent().
* From: Rob Smart <SMARTROB@uk.ibm.com>Sean Dague2008-09-121-0/+2
| | | | | | | Implement an osParseJSON method useful for handling simple JSON returns from http requests. This will only work in C# at this point.
* for testing purposes only:MW2008-07-091-0/+1
| | | | | | | | added void osSetParcelMediaTime(double time) command to script engines. which sets the position of the media that is playing. Time is in seconds. Doesn't do any security checking (should be checking that the object/script is owned by the parcel owner). So could be abused, if it is then we should remove it, or add the security. Only tested in dotnet scripting engine, but should work in XEngine too.
* From: kurt taylor (krtaylor)Dr Scofield2008-07-011-0/+2
| | | | | | | | Another new OSSL function for returning the name of the script engine currently running, osGetScriptEngineName, added to both DotNet and XEngine OSSL API.
* Thank you, Grumly57 kindly for:Charles Krinke2008-05-281-0/+2
| | | | | | | This patch proposes a new function : osOpenRemoteDataChannel(key channeID) that allow to open an XMLRPC channel for remote_data event. The difference is that the channelID can be customized instead of being randomly generated.
* Formatting cleanup.Jeff Ames2008-05-161-1/+1
|
* * Applying mantis#1048 - Patch for osSetRegionWaterHeight()Adam Frisby2008-04-251-0/+1
|
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-4/+0
| | | | (this took a while to run).
* Moved script engine os* commands to OSSL_BuilIn_Commands.cs and ↵Tedd Hansen2008-04-201-0/+32
| | | | OSSL_BuilIn_Commands_Interface.cs where they belong.
* Formatting cleanup.Jeff Ames2008-03-181-26/+26
|
* Added copyright heaaders. Minor cleanup.Jeff Ames2008-03-041-1/+1
|
* eolTedd Hansen2008-02-241-37/+37
|
* Changed so "BuiltIn_Commands" given to scripts is easily extendable. Added ↵Tedd Hansen2008-02-241-0/+37
new OSSL_BuilIn_Commands class where we can start adding our own modular commands.