aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime
diff options
context:
space:
mode:
authorMelanie2011-12-01 13:30:10 +0100
committerMelanie2011-12-01 13:30:10 +0100
commit797982ee11fd117e74ff3b09c7b74c1973062c8e (patch)
tree962a3d1c40f9c349bc667d7bd527704e38cd15c5 /OpenSim/Region/ScriptEngine/Shared/Api/Runtime
parentMerge branch 'bigmerge' of ssh://3dhosting.de/var/git/careminster into bigmerge (diff)
downloadopensim-SC_OLD-797982ee11fd117e74ff3b09c7b74c1973062c8e.zip
opensim-SC_OLD-797982ee11fd117e74ff3b09c7b74c1973062c8e.tar.gz
opensim-SC_OLD-797982ee11fd117e74ff3b09c7b74c1973062c8e.tar.bz2
opensim-SC_OLD-797982ee11fd117e74ff3b09c7b74c1973062c8e.tar.xz
Implement llTransferLindenDollars
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
index a88a1f4..c717589 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
@@ -846,6 +846,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
846 return m_LSL_Functions.llGiveMoney(destination, amount); 846 return m_LSL_Functions.llGiveMoney(destination, amount);
847 } 847 }
848 848
849 public LSL_String llTransferLindenDollars(string destination, int amount)
850 {
851 return m_LSL_Functions.llTransferLindenDollars(destination, amount);
852 }
853
849 public void llGodLikeRezObject(string inventory, LSL_Vector pos) 854 public void llGodLikeRezObject(string inventory, LSL_Vector pos)
850 { 855 {
851 m_LSL_Functions.llGodLikeRezObject(inventory, pos); 856 m_LSL_Functions.llGodLikeRezObject(inventory, pos);