Implements three new OSSL functions for parcel management: osParcelJoin joins parcels in an area, osParcelSubdivide splits parcels in an area, osParcelSetDetails sets parcel name, description, owner and group owner. Join and Subdivide methods in LandChannel are exposed.

This commit is contained in:
OpenSim Master
2010-04-29 11:57:30 -07:00
committed by unknown
parent 5d8638ed88
commit 4c740e1717
8 changed files with 144 additions and 0 deletions

View File

@@ -123,6 +123,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
void osWindParamSet(string plugin, string param, float value);
float osWindParamGet(string plugin, string param);
// Parcel commands
void osParcelJoin(vector pos1, vector pos2);
void osParcelSubdivide(vector pos1, vector pos2);
void osParcelSetDetails(vector pos, LSL_List rules);
string osGetScriptEngineName();
string osGetSimulatorVersion();