aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools
diff options
context:
space:
mode:
authorJeff Ames2008-05-19 13:26:42 +0000
committerJeff Ames2008-05-19 13:26:42 +0000
commit259ddcfe1a655638f8e87f8b3dfec6d9c006140f (patch)
treee6f0f1c461c2dffbb1c9fdc466002c31b5ad5ad2 /OpenSim/Tools
parentfixing exception when RestPlugin not configured. refactors RestRegionPlugin, ... (diff)
downloadopensim-SC_OLD-259ddcfe1a655638f8e87f8b3dfec6d9c006140f.zip
opensim-SC_OLD-259ddcfe1a655638f8e87f8b3dfec6d9c006140f.tar.gz
opensim-SC_OLD-259ddcfe1a655638f8e87f8b3dfec6d9c006140f.tar.bz2
opensim-SC_OLD-259ddcfe1a655638f8e87f8b3dfec6d9c006140f.tar.xz
Update svn properties. Minor formatting cleanup.
Diffstat (limited to 'OpenSim/Tools')
-rw-r--r--OpenSim/Tools/pCampBot/PhysicsBot.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/OpenSim/Tools/pCampBot/PhysicsBot.cs b/OpenSim/Tools/pCampBot/PhysicsBot.cs
index 960be9b..49c3c78 100644
--- a/OpenSim/Tools/pCampBot/PhysicsBot.cs
+++ b/OpenSim/Tools/pCampBot/PhysicsBot.cs
@@ -103,7 +103,6 @@ namespace pCampBot
103 client.Self.Chat(randomf, 0, ChatType.Normal); 103 client.Self.Chat(randomf, 0, ChatType.Normal);
104 104
105 //Thread.Sleep(somthing.Next(1, 10)); // Apparently its better without it right now. 105 //Thread.Sleep(somthing.Next(1, 10)); // Apparently its better without it right now.
106
107 } 106 }
108 107
109 /// <summary> 108 /// <summary>
@@ -115,9 +114,6 @@ namespace pCampBot
115 lastname = startupConfig.GetString("lastname", "random"); 114 lastname = startupConfig.GetString("lastname", "random");
116 password = startupConfig.GetString("password", "12345"); 115 password = startupConfig.GetString("password", "12345");
117 loginURI = startupConfig.GetString("loginuri"); 116 loginURI = startupConfig.GetString("loginuri");
118
119
120
121 } 117 }
122 118
123 /// <summary> 119 /// <summary>
@@ -139,7 +135,6 @@ namespace pCampBot
139 client.Network.OnDisconnected += new NetworkManager.DisconnectedCallback(this.Network_OnDisconnected); 135 client.Network.OnDisconnected += new NetworkManager.DisconnectedCallback(this.Network_OnDisconnected);
140 if (client.Network.Login(firstname, lastname, password, "pCampBot", "Your name")) 136 if (client.Network.Login(firstname, lastname, password, "pCampBot", "Your name"))
141 { 137 {
142
143 if (OnConnected != null) 138 if (OnConnected != null)
144 { 139 {
145 m_action = new Timer(somthing.Next(1000, 10000)); 140 m_action = new Timer(somthing.Next(1000, 10000));
@@ -147,7 +142,6 @@ namespace pCampBot
147 m_action.Start(); 142 m_action.Start();
148 OnConnected(this, EventType.CONNECTED); 143 OnConnected(this, EventType.CONNECTED);
149 client.Self.Jump(); 144 client.Self.Jump();
150
151 } 145 }
152 } 146 }
153 else 147 else