https://github.com/insertish/gw2mumblelink
🐉 Guild Wars 2 Mumble Link
https://github.com/insertish/gw2mumblelink
Last synced: 3 months ago
JSON representation
🐉 Guild Wars 2 Mumble Link
- Host: GitHub
- URL: https://github.com/insertish/gw2mumblelink
- Owner: insertish
- Created: 2018-05-31T14:15:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-17T17:40:19.000Z (about 7 years ago)
- Last Synced: 2025-01-01T22:41:05.075Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 358 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://gitlab.insrt.uk/insert/gw2mumblelink)
Retrieve data from the GW2 client through the data exposed for Mumble.
[](https://nodei.co/npm/gw2mumblelink/)
[](https://www.npmjs.com/package/gw2mumblelink)
## Quick Start
Below is a short snippet, I recommend looking through the examples folder to find what you're looking for.
```javascript
const MumbleLink = require('gw2mumblelink');
let mumbleLink = new MumbleLink();
if (!mumbleLink.init()) return console.error("Failed to initialise!");
mumbleLink.getName(); // Should be Guild Wars 2
let identity = mumbleLink.getIdentity();
console.log(identity.name); // Your character's name =)
```
## To-Do
- Create documentation for module
- Figure out how to handle the context properly
- Figure out what character.front / .top and camera.front / .top are
- ~~Finish support for [ML struct](https://wiki.guildwars2.com/wiki/API:MumbleLink#MumbleLink_structure), this includes: f* vars, the context, desc and other variables.~~
## Issues
- Usually works, sometimes it becomes hit or miss after a few launches, same issue occurs with GW2-Taco, restarting the application several times seems to have fixed it for some reason? (To investigate)