vermin Posted October 22, 2014 Share Posted October 22, 2014 Hello I am trying to write a custom authenticator for ARMA3 & murmur using ICE 3.5.1.Using:VS 2010 Murmur 1.3 Ice 3.5.1 mumbleLink Arma3 B3 (https://dev.withsix.com/projects/mumblelink)I have manage to achieve this , I have:1) started murmur server2) started mumble, a) with positional audio settings setb) set link and transmitc) Joined server3) Loaded ARMA3 with mumble link mod, load mission the mod says it is mumble linked.4) Connected to the murmur server with ICE client.5) Queried Users /user info with iceThe mumble link arma3 plugin is being used to send mumble link info including context and identity information.I have verified that there is information being added to the mumble struct LinkedMem.When I query the User info using the codes below, everythin reports data , user-> name etc, except ->indentity or ->context I just get blank strings. for (UserMap::iterator ii=users.begin(); ii != users.end(); ii++) cout << setw(8) << right << (*ii).first << " " << (*ii).second.name << " " << (*ii).second.udpPing << " : ( Identity : " << (*ii).second.identity << " ) : ( Version : " << (*ii).second.version << " ) : ( Context : " << (*ii).second.context << " ) " << endl; Arma3 is loaded and it says it is links with mumble.Why is no context or Identity info returned?How can I debug the mumble link info on murmur? 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.