diff options
author | Melanie | 2012-01-26 23:07:31 +0000 |
---|---|---|
committer | Melanie | 2012-01-26 23:07:31 +0000 |
commit | 9d60b84f7805b78ae9413b4dc66c2fbbf387e503 (patch) | |
tree | 6aa89951925561a5dbe031b9a92e9dd49c0a272a /OpenSim/Region/ScriptEngine/Shared/Api/Runtime | |
parent | Merge branch 'master' into careminster (diff) | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC-9d60b84f7805b78ae9413b4dc66c2fbbf387e503.zip opensim-SC-9d60b84f7805b78ae9413b4dc66c2fbbf387e503.tar.gz opensim-SC-9d60b84f7805b78ae9413b4dc66c2fbbf387e503.tar.bz2 opensim-SC-9d60b84f7805b78ae9413b4dc66c2fbbf387e503.tar.xz |
Merge branch 'master' into careminster
Conflicts:
OpenSim/Framework/EstateSettings.cs
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | 8 | ||||
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | 5 |
2 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs index 32226f9..11a8883 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | |||
@@ -435,6 +435,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
435 | public const int REGION_FLAG_ALLOW_DIRECT_TELEPORT = 0x100000; // region allows direct teleports | 435 | public const int REGION_FLAG_ALLOW_DIRECT_TELEPORT = 0x100000; // region allows direct teleports |
436 | public const int REGION_FLAG_RESTRICT_PUSHOBJECT = 0x400000; // region restricts llPushObject | 436 | public const int REGION_FLAG_RESTRICT_PUSHOBJECT = 0x400000; // region restricts llPushObject |
437 | 437 | ||
438 | //llManageEstateAccess | ||
439 | public const int ESTATE_ACCESS_ALLOWED_AGENT_ADD = 0; | ||
440 | public const int ESTATE_ACCESS_ALLOWED_AGENT_REMOVE = 1; | ||
441 | public const int ESTATE_ACCESS_ALLOWED_GROUP_ADD = 2; | ||
442 | public const int ESTATE_ACCESS_ALLOWED_GROUP_REMOVE = 3; | ||
443 | public const int ESTATE_ACCESS_BANNED_AGENT_ADD = 4; | ||
444 | public const int ESTATE_ACCESS_BANNED_AGENT_REMOVE = 5; | ||
445 | |||
438 | public static readonly LSLInteger PAY_HIDE = new LSLInteger(-1); | 446 | public static readonly LSLInteger PAY_HIDE = new LSLInteger(-1); |
439 | public static readonly LSLInteger PAY_DEFAULT = new LSLInteger(-2); | 447 | public static readonly LSLInteger PAY_DEFAULT = new LSLInteger(-2); |
440 | 448 | ||
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs index e0c81c7..a27899f 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | |||
@@ -1071,6 +1071,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
1071 | m_LSL_Functions.llLoopSoundSlave(sound, volume); | 1071 | m_LSL_Functions.llLoopSoundSlave(sound, volume); |
1072 | } | 1072 | } |
1073 | 1073 | ||
1074 | public LSL_Integer llManageEstateAccess(int action, string avatar) | ||
1075 | { | ||
1076 | return m_LSL_Functions.llManageEstateAccess(action, avatar); | ||
1077 | } | ||
1078 | |||
1074 | public void llMakeExplosion(int particles, double scale, double vel, double lifetime, double arc, string texture, LSL_Vector offset) | 1079 | public void llMakeExplosion(int particles, double scale, double vel, double lifetime, double arc, string texture, LSL_Vector offset) |
1075 | { | 1080 | { |
1076 | m_LSL_Functions.llMakeExplosion(particles, scale, vel, lifetime, arc, texture, offset); | 1081 | m_LSL_Functions.llMakeExplosion(particles, scale, vel, lifetime, arc, texture, offset); |