Ulysses
Ulysses Stuff => Releases => Topic started 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.
-
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.
-
He did.
He then "released" it here in Releases after discussing it in the developers section.
-
just wondering, how would this be useful
-
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.
-
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.
-
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.
-
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.
-
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...
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.)
-
Now every server can be just like the NSA :-\
-
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"!
-
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.
-
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.
-
I just want to be very precautious.