View Single Post
  #5  
Old 08-10-2006, 10:39 PM
Angel_Light Angel_Light is offline
Varia Developer
Angel_Light's Avatar
Join Date: Nov 2005
Location: Knoxville, TN
Posts: 1,684
Angel_Light is on a distinguished road
Send a message via AIM to Angel_Light Send a message via MSN to Angel_Light
Red face

Quote:
Originally Posted by Skyld
  • It would be used by scripters to invade privacy.
Explain fully please.
Quote:
Originally Posted by Skyld
  • There is no real use for voice recognition inside Graal. Windows XP and Mac OS X already support it.
Show me how to use this on Graal then. :o
Quote:
Originally Posted by Skyld
  • It means modifying the engine to support a way of storing the sound, because 'player.sound' would not work.
  • It's a waste of computer power continuously processing sound input.
I disagree. Maybe something like this would work.
PHP Code:
function onCreated() {
this.soundnumber 0;
}
function 
onMicroPhoneOn() { // If the microphone key is pushed
if (this.filetype == "MP3") { // makes the save file .mp3
this.filetype = .mp3;
}
else if (
this.filetype == "WAV") { // makes the save file .wav
this.filetype = .wav;
}
else if (
this.filetype == "MID") { // make the save file .mid
this.filetype = .mid
}
if (
player.input == "true") {   // If sound is recieved
savesoundplayer.inputplayer.account "Sound" this.soundnumber this.filetype);  // sound , Name-of-file.ext
sleep(0.05);
this.soundnumber += 1;

You could have some key or whatever change the this.filetype or whatever.
Player(s) might have to pay more or just VIP are allowed to do this becuase, some people might save ridiculously large files or something of the such. Player(s) should not record anything that dont want to be listen by other people anyways. Thank-you.
__________________
Deep into the Darkness peering...
Reply With Quote