aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ReplaceableModules/MoneyModule/SampleMoneyModule.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ReplaceableModules/MoneyModule/SampleMoneyModule.cs')
-rw-r--r--OpenSim/Region/ReplaceableModules/MoneyModule/SampleMoneyModule.cs24
1 files changed, 12 insertions, 12 deletions
diff --git a/OpenSim/Region/ReplaceableModules/MoneyModule/SampleMoneyModule.cs b/OpenSim/Region/ReplaceableModules/MoneyModule/SampleMoneyModule.cs
index cd68541..62d8f4b 100644
--- a/OpenSim/Region/ReplaceableModules/MoneyModule/SampleMoneyModule.cs
+++ b/OpenSim/Region/ReplaceableModules/MoneyModule/SampleMoneyModule.cs
@@ -79,7 +79,7 @@ namespace OpenSim.Region.ReplaceableModules.MoneyModule
79 /// </summary> 79 /// </summary>
80 private Dictionary<ulong, Scene> m_scenel = new Dictionary<ulong, Scene>(); 80 private Dictionary<ulong, Scene> m_scenel = new Dictionary<ulong, Scene>();
81 81
82 private int m_stipend = 1000; 82 // private int m_stipend = 1000;
83 83
84 private int ObjectCapacity = 45000; 84 private int ObjectCapacity = 45000;
85 private int ObjectCount = 0; 85 private int ObjectCount = 0;
@@ -471,8 +471,8 @@ namespace OpenSim.Region.ReplaceableModules.MoneyModule
471 471
472 public XmlRpcResponse quote_func(XmlRpcRequest request) 472 public XmlRpcResponse quote_func(XmlRpcRequest request)
473 { 473 {
474 Hashtable requestData = (Hashtable) request.Params[0]; 474 // Hashtable requestData = (Hashtable) request.Params[0];
475 UUID agentId = UUID.Zero; 475 // UUID agentId = UUID.Zero;
476 int amount = 0; 476 int amount = 0;
477 Hashtable quoteResponse = new Hashtable(); 477 Hashtable quoteResponse = new Hashtable();
478 XmlRpcResponse returnval = new XmlRpcResponse(); 478 XmlRpcResponse returnval = new XmlRpcResponse();
@@ -495,9 +495,9 @@ namespace OpenSim.Region.ReplaceableModules.MoneyModule
495 495
496 public XmlRpcResponse buy_func(XmlRpcRequest request) 496 public XmlRpcResponse buy_func(XmlRpcRequest request)
497 { 497 {
498 Hashtable requestData = (Hashtable) request.Params[0]; 498 // Hashtable requestData = (Hashtable) request.Params[0];
499 UUID agentId = UUID.Zero; 499 // UUID agentId = UUID.Zero;
500 int amount = 0; 500 // int amount = 0;
501 501
502 XmlRpcResponse returnval = new XmlRpcResponse(); 502 XmlRpcResponse returnval = new XmlRpcResponse();
503 Hashtable returnresp = new Hashtable(); 503 Hashtable returnresp = new Hashtable();
@@ -545,10 +545,10 @@ namespace OpenSim.Region.ReplaceableModules.MoneyModule
545 { 545 {
546 XmlRpcResponse ret = new XmlRpcResponse(); 546 XmlRpcResponse ret = new XmlRpcResponse();
547 Hashtable retparam = new Hashtable(); 547 Hashtable retparam = new Hashtable();
548 Hashtable requestData = (Hashtable) request.Params[0]; 548 // Hashtable requestData = (Hashtable) request.Params[0];
549 549
550 UUID agentId = UUID.Zero; 550 // UUID agentId = UUID.Zero;
551 int amount = 0; 551 // int amount = 0;
552 552
553 retparam.Add("success", true); 553 retparam.Add("success", true);
554 ret.Value = retparam; 554 ret.Value = retparam;
@@ -581,10 +581,10 @@ namespace OpenSim.Region.ReplaceableModules.MoneyModule
581 return returnfunds; 581 return returnfunds;
582 } 582 }
583 583
584 private void SetLocalFundsForAgentID(UUID AgentID, int amount) 584 // private void SetLocalFundsForAgentID(UUID AgentID, int amount)
585 { 585 // {
586 586
587 } 587 // }
588 588
589 #endregion 589 #endregion
590 590