gta-net-five Exception: Unknown exception
Unable to connect on dedicated mumble server. Getting above exception in game console after restarting resource and after every call of MumbleSetServerAddress
. I’ve installed mumble-server on Ubuntu 20.04 on DigitalOcean (Installing Mumble - Mumble Wiki) and I use MumbleSetServerAddress
; I still can connect via iOS client.
(() => {
const IP = "192.168.100.7";
const PORT = 64738;
MumbleSetServerAddress(IP, PORT);
setTimeout(() => {
let connectingInterval = setInterval(() => {
console.log("Connecting");
if (MumbleIsConnected()) {
clearInterval(connectingInterval);
emitNet("mumble-client:resourceStarted");
} else {
MumbleSetServerAddress(IP, PORT)
}
}, 1000);
}, 3000);
})();
Happening both on 2967/stable and 3054/canary server/client builds.