This documentation explains the latest DAVE update, including Python dependency changes and the AIRANODE Lavalink connection configuration.
By NaAz (Not_Op_gamer404_Yt)
The official Wavelink package currently has issues with the new system used by DAVE. Because of this, the dependency has been switched to a patched Git version.
pip install wavelinkpip install git+https://github.com/munishkhatri720/Wavelink@websockets-patchIf you use a requirements.txt file:
git+https://github.com/munishkhatri720/Wavelink@websockets-patch
For JavaScript bots, the Lavalink node configuration must be updated manually.
You will need to connect your Lavalink client to the AIRANODE Lavalink server.
Example clients that can be used:
- Shoukaku
- Erela.js
- Oceanic Lavalink Client
- Custom Lavalink clients
Use the following node to connect your bot.
online
lava.airanode.cloud
25714
AnXCodeX
false
node = wavelink.Node(
uri="http://lava.airanode.cloud:25714",
password="AnXCodeX"
)const nodes = [
{
host: "lava.airanode.cloud",
port: 25714,
password: "AnXCodeX",
secure: false
}
];- Always use the patched Wavelink Git version
- Make sure your bot can connect to the Lavalink node
- JavaScript users must configure the node manually in their Lavalink client
NaAz (Not_Op_gamer404_Yt)