phalle Posted March 24, 2010 Share Posted March 24, 2010 Hey. I have been poking around with Mumble today (great software), but I have not found anyway to make anyone who join get automaticly moved to another channel. I don't want them in Root. Is this possible? I know I can prevent ppl from talking in Root, but then they have to move them self. /Ph Quote Link to comment Share on other sites More sharing options...
Administrators kissaki Posted March 24, 2010 Administrators Share Posted March 24, 2010 Up to now the only way to do so was to deny enter-privilege to the root channel so users will be pushed to the next one. Quote Link to comment Share on other sites More sharing options...
lux73 Posted March 25, 2010 Share Posted March 25, 2010 using dbus to set a default channel: dbus-send --system --print-reply --dest=net.sourceforge.mumble.murmur --type=method_call / net.sourceforge.mumble.Meta.setConf int32:<ServerID> string:"defaultchannel" string:"<ChannelId>"set for your preferred Channel dbus-send --system --print-reply --dest=net.sourceforge.mumble.murmur --type=method_call /<Serverid> net.sourceforge.mumble.Murmur.getChannelsto get the ChannelIdgreetings Quote http://mumble://mumble.djabber.de:16999/?version=1.2.3 Link to comment Share on other sites More sharing options...
Administrators kissaki Posted March 25, 2010 Administrators Share Posted March 25, 2010 Oh sh**Totally forgot… never used it.Also possible via Ice of course. :) Quote Link to comment Share on other sites More sharing options...
pieceofthepie Posted April 28, 2010 Share Posted April 28, 2010 Care to explain the ICE instructions? :DEDITNevermind. Bit of digging in the Murmur ICE docs and some PHP from the included PHP file gave me this<?php Ice_loadProfile(); try { $base = $ICE->stringToProxy("Meta:tcp -h 127.0.0.1 -p 6502"); $meta = $base->ice_checkedCast("::Murmur::Meta"); $server = $meta->getServer(1); $server->setConf("defaultchannel", "1"); } catch (Exception $ex) { echo "<p><pre>\n"; print_r($ex); echo "</pre></p>"; } Did the job nicely. 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.