Development > Module Requests

Mumble Sever Status Display in Guild Chat with connection info!

(1/2) > >>

drewab45:
So basically something like
!mumble
would spit out mumble voice server information on how many users are online and some connection info if you click it to be displayed in a window. You would also allow this info to include a copy/pastable url that mumble uses for quick connection, as well as a url to download the client. The code is already created for use in a website with php, the module could easily be converted to spit info in chat.
The server info is pulled from xml with serverid code from this url.

http://clanforge.multiplay.co.uk/public/servers.pl?event=Online;opt=ServerXml;serverid=<insertidhere>;fake=server.xml

its displayed in sorted info like this

server ip below
00.00.000.00:2087 Server Name N/A 2 50 0 0 157 0 1347 2087 2087 online

after N/A the number 2 is how many ppl connected atm

so sort that info neatly and allow it to be clicked for more info on downloading mumble and connection url.

heres the php already written on the other site:
http://www.eqdkp-plus.com/forum/alpha-test-mumble-portal-module-t29704.html

^^ that should make this quicker process. Many people using mumble would love this bot addon :)

Kyr:
what is a mumble server?

Yite:

--- Quote ---Mumble is an open source, low-latency, high quality voice chat software primarily intended for use while gaming.
--- End quote ---
http://mumble.sourceforge.net/
Sound quality is pretty good but it's not as often used as Vent or TS as you have to host it yourself.

drewab45:
You dont have to host it yourself. Multiplay gaming servers has mumble. They are becoming more popularly used with FPS games even being integrated into some newer titles for pc in the future. Anybody have any ideas for setting this up though?

laryllan:
Such a module should be easily done.
Every Mumble server has a plain http site showing people online.

You just have to parse it.

Looks like this:


--- Code: ---<html>
<head>
<title>Userlist</title>
</head>
<body>
<h1>SERVER NAME</h1>
<table><tr><th>Name</th><th>Channel</th></tr>
<tr><td>Player</td><td>Lounge</td></tr>
</table>
</body>
</html>
--- End code ---

Navigation

[0] Message Index

[#] Next page

Go to full version