diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs index 7073830..dd46fa4 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs | |||
@@ -1829,6 +1829,11 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1829 | return m_LSL_Functions.llGetParcelDetails(pos, param); | 1829 | return m_LSL_Functions.llGetParcelDetails(pos, param); |
1830 | } | 1830 | } |
1831 | 1831 | ||
1832 | public string llStringTrim(string src, int type) | ||
1833 | { | ||
1834 | return m_LSL_Functions.llStringTrim(src, type); | ||
1835 | } | ||
1836 | |||
1832 | // | 1837 | // |
1833 | // OpenSim Functions | 1838 | // OpenSim Functions |
1834 | // | 1839 | // |
@@ -1853,6 +1858,13 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1853 | return m_LSL_Functions.osRegionRestart(seconds); | 1858 | return m_LSL_Functions.osRegionRestart(seconds); |
1854 | } | 1859 | } |
1855 | 1860 | ||
1861 | public void osRegionNotice(string msg) | ||
1862 | { | ||
1863 | m_LSL_Functions.osRegionNotice(msg); | ||
1864 | } | ||
1865 | |||
1866 | |||
1867 | |||
1856 | // LSL CONSTANTS | 1868 | // LSL CONSTANTS |
1857 | public const int TRUE = 1; | 1869 | public const int TRUE = 1; |
1858 | public const int FALSE = 0; | 1870 | public const int FALSE = 0; |
@@ -2165,7 +2177,9 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2165 | public const double DEG_TO_RAD = 0.01745329238f; | 2177 | public const double DEG_TO_RAD = 0.01745329238f; |
2166 | public const double RAD_TO_DEG = 57.29578f; | 2178 | public const double RAD_TO_DEG = 57.29578f; |
2167 | public const double SQRT2 = 1.414213538f; | 2179 | public const double SQRT2 = 1.414213538f; |
2168 | 2180 | public const int STRING_TRIM_HEAD = 1; | |
2181 | public const int STRING_TRIM_TAIL = 2; | ||
2182 | public const int STRING_TRIM = 3; | ||
2169 | // Can not be public const? | 2183 | // Can not be public const? |
2170 | public vector ZERO_VECTOR = new vector(0.0, 0.0, 0.0); | 2184 | public vector ZERO_VECTOR = new vector(0.0, 0.0, 0.0); |
2171 | public rotation ZERO_ROTATION = new rotation(0.0, 0, 0.0, 1.0); | 2185 | public rotation ZERO_ROTATION = new rotation(0.0, 0, 0.0, 1.0); |