KimiorV Posted August 29, 2023 Share Posted August 29, 2023 (edited) Introduction This module integrates the Mumble client with Gothic Online, allowing players to connect to your Mumble server and enjoy voice communication within the Gothic game! Project link: - Repository - Download (will be added soon) - Docs How to use - mumble server configuration Mumble server setup - https://www.unixmen.com/install-mumble-server-ubuntu/ How to use - join server and talk enableEvent_Render(true); addEventHandler("onInit", function() { mumble.openConnection("kyrmir.eu", 64738, "YOURPASSWORD"); }); addEventHandler("onPlayerCreate", function(playerId) { if(playerId == heroId) { // Wait 500ms for initialization setTimer(function() { mumble.toggleOutput(true); }, 500, 1); } }); local voice = false; addEventHandler("onRender", function() { if(isKeyPressed(KEY_V)) { if(voice == false) { mumble.toggleInput(true); voice = true; } } else { if(voice == true) { mumble.toggleInput(false); voice = false; } } }); Edited August 31, 2023 by KimiorV 2 Quote Link to comment Share on other sites More sharing options...
KimiorV Posted August 30, 2023 Author Share Posted August 30, 2023 (edited) I have attached a test version of the DLL. Hopefully, in a few days, I will complete the work, and future updates will be delivered via GitLab CI/CD. Update (01.09.2023): Added new version with some fixes(threading) mumbleclient.dll Edited September 1, 2023 by KimiorV Quote Link to comment Share on other sites More sharing options...
KimiorV Posted August 31, 2023 Author Share Posted August 31, 2023 From now using example and docs are available under this address - https://tomasz-k.gitlab.io/mumble/ 1 Quote Link to comment Share on other sites More sharing options...
Patrix Posted September 1, 2023 Share Posted September 1, 2023 Good work man, keep it up. 1 Quote Link to comment Share on other sites More sharing options...
KimiorV Posted September 8, 2023 Author Share Posted September 8, 2023 (edited) Hello there, I have new dll for you, with some fixes(crashes etc)... #Last update 10.09 mumbleclient.dll Edited September 10, 2023 by KimiorV Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.