mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 02:36:00 +08:00
Merge branch 'master' into careminster-presence-refactor
This commit is contained in:
@@ -508,6 +508,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
||||
public const int PARCEL_DETAILS_OWNER = 2;
|
||||
public const int PARCEL_DETAILS_GROUP = 3;
|
||||
public const int PARCEL_DETAILS_AREA = 4;
|
||||
public const int PARCEL_DETAILS_ID = 5;
|
||||
|
||||
// constants for llSetClickAction
|
||||
public const int CLICK_ACTION_NONE = 0;
|
||||
|
||||
@@ -227,6 +227,21 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
||||
m_OSSL_Functions.osTeleportAgent(agent, position, lookat);
|
||||
}
|
||||
|
||||
public void osTeleportOwner(string regionName, vector position, vector lookat)
|
||||
{
|
||||
m_OSSL_Functions.osTeleportOwner(regionName, position, lookat);
|
||||
}
|
||||
|
||||
public void osTeleportOwner(int regionX, int regionY, vector position, vector lookat)
|
||||
{
|
||||
m_OSSL_Functions.osTeleportOwner(regionX, regionY, position, lookat);
|
||||
}
|
||||
|
||||
public void osTeleportOwner(vector position, vector lookat)
|
||||
{
|
||||
m_OSSL_Functions.osTeleportOwner(position, lookat);
|
||||
}
|
||||
|
||||
// Avatar info functions
|
||||
public string osGetAgentIP(string agent)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user