JakGoru1
|
  |
| Joined: 25 May 2012 |
| Total Posts: 44 |
|
|
| 07 Apr 2014 06:22 PM |
| I need to know how to do voice commands. Could a skilled scripter help me? |
|
|
| Report Abuse |
|
|
|
| 07 Apr 2014 06:36 PM |
Well, we have no way to input voice currently. And even if we did, we would need a full analysis of the audio data to do this. And STILL the task would be extremely difficult.
Really the only solution would be to find an open API web service that does speech-to-text and then call it using the HttpService IF ROBLOX supported voice input. |
|
|
| Report Abuse |
|
|
|
| 07 Apr 2014 06:38 PM |
@Crazy; I think he meant chat commands, like in Kohl's, where you go:
:ff me |
|
|
| Report Abuse |
|
|
MrChubbs
|
  |
| Joined: 14 Oct 2010 |
| Total Posts: 4969 |
|
|
| 07 Apr 2014 06:39 PM |
| Well if it was just for you then you could simply record off the mic when a key was down then run it through Google's ASR, then have it perform an operation on Roblox(Activate a key to grab focus to an invisible textbox, enter what was said, run it.) |
|
|
| Report Abuse |
|
|
Goulstem
|
  |
| Joined: 04 Jul 2012 |
| Total Posts: 7177 |
|
|
| 07 Apr 2014 06:39 PM |
| I think he means like a Chatted Event.. |
|
|
| Report Abuse |
|
|
| |
|
|
| 07 Apr 2014 06:46 PM |
game.Players.PlayerAdded:connect(function(player) --player joins the game player.Chatted:connect(function(message, plr) --stuff, for example: if message == "killme" then plr.Character.Head:Destroy() end end) end) |
|
|
| Report Abuse |
|
|