Ulysses

Ulysses Stuff => Releases => Topic started by: LostAlien on July 22, 2013, 02:32:08 AM

Title: Force client's microphone on!
Post by: LostAlien on July 22, 2013, 02:32:08 AM
I wanted to make a simple command, so there isn't much fancy over it. The command will allow you to force a target's microphone on. !micon and !micoff are the 2 commands.

To install it, just put the file in 'ulx/lua/ulx/modules/sh'

You may take my code and edit it for your own use. Please do not redistribute it, without my permission.
Title: Re: Force client's microphone on!
Post by: Positive on July 26, 2013, 11:37:14 PM
http://forums.ulyssesmod.net/index.php/topic,6386.0.html (http://forums.ulyssesmod.net/index.php/topic,6386.0.html)Looks like You[/u] Made this.
Title: Re: Force client's microphone on!
Post by: JamminR on July 27, 2013, 07:18:48 AM
He did.
He then "released" it here in Releases after discussing it in the developers section.
Title: Re: Force client's microphone on!
Post by: Marshy on July 27, 2013, 11:36:27 AM
just wondering, how would this be useful
Title: Re: Force client's microphone on!
Post by: Decicus on July 27, 2013, 01:32:14 PM
As the creator posted in his other thread. He wants to use this for people that are suspected for ghosting in the Trouble in Terrorist Town gamemode.
Title: Re: Force client's microphone on!
Post by: MrPresident on July 27, 2013, 03:03:48 PM
Assuming you live in the United States (and even if you don't I assume your country has something similar):

Unless you specifically notify the player that their voice communication is being monitored you are stepping into the realm of 4th Amendment violation. (Protection againt unlawful search and seizure)

This has extended into unknowing/unwilling video/audio capture of people in their personal homes.



I know it's just a video game, but that doesn't take away from any of this.

I just don't think that you are allowed to capture a player's microphone without their knowledge. It is illegal.

To make this alright, you would need to add some kind of disclaimer that the user would have to accept that clearly states that you would be capturing their sound even when they were not knowingly broadcasting.
Title: Re: Force client's microphone on!
Post by: Megiddo on July 27, 2013, 03:28:08 PM
I'm going to agree with Mr President on this one. Create a join hook that gives a message to the players along the lines of "Notice: By joining this server, you consent to having your microphone monitored". If you don't want to do this yourself, I can edit it for you to add it.
Title: Re: Force client's microphone on!
Post by: jackg904 on July 27, 2013, 09:00:19 PM
I'm going to agree with Mr President on this one. Create a join hook that gives a message to the players along the lines of "Notice: By joining this server, you consent to having your microphone monitored". If you don't want to do this yourself, I can edit it for you to add it.

Regardless of him wanting it or not, for my own use I'd appreciate it if you could point me on the right direction towards doing this. Cheers.
Title: Re: Force client's microphone on!
Post by: LuaTenshi on August 02, 2013, 10:43:10 PM
Regardless of him wanting it or not, for my own use I'd appreciate it if you could point me on the right direction towards doing this. Cheers.

This is how I would do it...

Code: [Select]
hook.Add( "PlayerInitialSpawn", "some_unique_name", function(ply)
 ply:PrintMessage( HUD_PRINTCENTER, "Notice: By joining this server, you consent to having your microphone monitored!" )
 ply:ChatPrint( "Notice: By joining this server, you consent to having your microphone monitored!" )
end)
timer.Create( "UniqueName", 60, 0, function()  for _,v in pairs(player.GetAll()) do v:ChatPrint("Notice: Your microphone may be monitored at any time.") end end )

That way they get a notification when they first join and then every minute after that, so they do not forget. (This is non intrusive.)
Title: Re: Force client's microphone on!
Post by: Bite That Apple on August 15, 2013, 07:23:27 AM
Now every server can be just like the NSA  :-\
Title: Re: Force client's microphone on!
Post by: CompanionCube55 on July 24, 2014, 07:47:51 PM
I wanted to make a simple command, so there isn't much fancy over it. The command will allow you to force a target's microphone on. !micon and !micoff are the 2 commands.

To install it, just put the file in 'ulx/lua/ulx/modules/sh'

You may take my code and edit it for your own use. Please do not redistribute it, without my permission.
is even legal
(I do sound and lights for theaters) If your in sound you'll know that this is gmods "PFL"!
Title: Re: Force client's microphone on!
Post by: The Asian Aimbot on September 03, 2016, 07:15:51 PM
Hi! Sorry for the bump, but I am very new to Lua, and have poor understanding of it, so I used your script and modified pretty much all of it for my own little addon. I'll take it down immediately if you wish.
Title: Re: Force client's microphone on!
Post by: Bite That Apple on September 03, 2016, 07:55:46 PM
Hi! Sorry for the bump, but I am very new to Lua, and have poor understanding of it, so I used your script and modified pretty much all of it for my own little addon. I'll take it down immediately if you wish.

The person who made this has not logged in since; June 15, 2014, 01:03:55 AM
I'm sure he does not care about this addon anymore, if he ever did from the beginning.
Title: Re: Force client's microphone on!
Post by: The Asian Aimbot on September 03, 2016, 08:08:48 PM
I just want to be very precautious.