Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 1.27 KB

README.md

File metadata and controls

47 lines (34 loc) · 1.27 KB

Open-MV bots

Node.js 3D virtual world client bots inspired by LibOpenMetaverse

Dependencies

This code relies on a running instance of OpenSimulator. The default configuration assumes a local grid is running.

Testing

At minimum, testing this code requires a running instance of OpenSimulator and an existing user account. Update the example config file to contain your credentials.

$ cp config.json.example config.json

Take a look at config.json

{
  "credentials": {
    "first_name": "first_name",
    "last_name": "last_name",
    "passwd": "moonmoon"
  },
  "login_uri": "127.0.0.1:8002",
  "start": "last"
}

Update your login credentials and settings (name, login server, start position). Here is login protocol documentation.

{
  "credentials": {
    "first_name": "Hermione",
    "last_name": "Granger",
    "passwd": "t1m3turn3r!"
  },
  "login_uri": "127.0.0.1:8002",
  "start": "last"
}

Development

$ npm install openmv-bots

For a good example while this module is in development, see the login test.