diff options
author | Jeff Ames | 2008-02-15 03:21:05 +0000 |
---|---|---|
committer | Jeff Ames | 2008-02-15 03:21:05 +0000 |
commit | 25e7f74d29b394737e3180dff71ee0020430b4e1 (patch) | |
tree | fa2c91ac8daf74c50b021ad825cc33d8713e70e9 /OpenSim/Tools/pCampBot/README.txt | |
parent | Moved pCampBot to OpenSim/Tools (diff) | |
download | opensim-SC_OLD-25e7f74d29b394737e3180dff71ee0020430b4e1.zip opensim-SC_OLD-25e7f74d29b394737e3180dff71ee0020430b4e1.tar.gz opensim-SC_OLD-25e7f74d29b394737e3180dff71ee0020430b4e1.tar.bz2 opensim-SC_OLD-25e7f74d29b394737e3180dff71ee0020430b4e1.tar.xz |
Move pCampBot prebuild.xml into main prebuild.xml to fix reference errors. Update README.
Diffstat (limited to 'OpenSim/Tools/pCampBot/README.txt')
-rw-r--r-- | OpenSim/Tools/pCampBot/README.txt | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/OpenSim/Tools/pCampBot/README.txt b/OpenSim/Tools/pCampBot/README.txt new file mode 100644 index 0000000..7ecbde1 --- /dev/null +++ b/OpenSim/Tools/pCampBot/README.txt | |||
@@ -0,0 +1,44 @@ | |||
1 | This is the PhysicsCamperbot libslBot tester. | ||
2 | |||
3 | This is designed to be run in standalone mode with authorize accounts | ||
4 | turned off as a way to stress test the simulator. It creates <N> | ||
5 | clients that log in, randomly jump/walk around, and say excuses from | ||
6 | the BOFH. | ||
7 | |||
8 | *** WARNING *** | ||
9 | Using this bot on a public grid could get you banned permanently, so | ||
10 | just say No! to griefing! | ||
11 | |||
12 | ----- Setup ----- | ||
13 | Linux: To build, in the main opensim directory, run: | ||
14 | ./runprebuild.sh | ||
15 | nant | ||
16 | |||
17 | Windows: Run the prebuild.bat in the main opensim directory and then | ||
18 | open the created solution and compile it. | ||
19 | |||
20 | pCampBot.exe will end up in the regular opensim/bin folder | ||
21 | |||
22 | ----- Running the bot ----- | ||
23 | |||
24 | windows: pCampBot.exe -botcount <N> -loginuri <URI> | ||
25 | *nix: mono pCampBot.exe -botcount <N> -loginuri <URI> | ||
26 | |||
27 | The names it produces are random by default, however, you can specify | ||
28 | either a firstname or a lastname in the command line also. | ||
29 | |||
30 | ex: pCampBot.exe -botcount <N> -loginuri <URI> -lastname <lastname> | ||
31 | |||
32 | If you specify both a firstname *and* a lastname, you'll likely run | ||
33 | into trouble unless you're only running a single bot. In that case, | ||
34 | there's also a password option. | ||
35 | |||
36 | pCampBot.exe -botcount 1 -loginuri http://somegrid.com:8002 -firstname SomeDude -lastname SomeDude -password GobbleDeGook | ||
37 | |||
38 | ----- Commands ----- | ||
39 | |||
40 | The bot has console commands: | ||
41 | help - lists the console commands and what they do | ||
42 | shutdown - gracefully shuts down the bots | ||
43 | quit - forcefully shuts things down leaving stuff unclean | ||
44 | addbots N - adds N number of random bots. (replace 'N' with a number) | ||