aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/XEngine/Script/IOSSL_ScriptCommands.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-06-24* Applied patch from Melanie, mantis issue #1581 - "Refactor LSL language, ↵lbsa711-68/+0
api and compiler out of XEngine" "First stage in a major Script Engine refactor, that will result in the LSL implementaions ebing reconverged. Not there yet, but one major part is done." Thank you, Melanie!
2008-05-30* This is Melanie's XEngine script engine. I've not tested this real well, ↵Teravus Ovares1-4/+4
however, it's confirmed to compile and OpenSimulator to run successfully without this script engine active.
2008-05-28Thank you, Grumly57 kindly for:Charles Krinke1-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.
2008-05-16Formatting cleanup.Jeff Ames1-1/+1
2008-04-25* Applying mantis#1048 - Patch for osSetRegionWaterHeight()Adam Frisby1-0/+1
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-4/+0
(this took a while to run).
2008-04-20Moved script engine os* commands to OSSL_BuilIn_Commands.cs and ↵Tedd Hansen1-0/+32
OSSL_BuilIn_Commands_Interface.cs where they belong.
2008-03-18Formatting cleanup.Jeff Ames1-26/+26
2008-03-04Added copyright heaaders. Minor cleanup.Jeff Ames1-1/+1
2008-02-24eolTedd Hansen1-37/+37
2008-02-24Changed so "BuiltIn_Commands" given to scripts is easily extendable. Added ↵Tedd Hansen1-39/+37
new OSSL_BuilIn_Commands class where we can start adding our own modular commands.
2008-02-17Added copyright notices.Jeff Ames1-0/+28
2008-02-15Update svn properties.Jeff Ames1-11/+11
2008-02-14* Made new Framework.Constants class, added RegionSize member.Adam Frisby1-0/+11
* Converted all instances of "256" spotted to use RegionSize instead. Some approximations used for border crossings (ie 255.9f) are still using that value, but should be updated to use something based on RegionSize. * Moving Terrain to a RegionModule, implemented ITerrainChannel and TerrainModule - nonfunctional, but will be soon.