Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: rickious on Sun 03/08/2014 14:39:22

Title: SetVoiceMode errors (havent used AGS for 10 months)
Post by: rickious on Sun 03/08/2014 14:39:22
I have picked AGS back up after 10 months and I am getting errors on my global script....

SetVoiceMode(eSpeechVoiceAndText);
SetVoiceMode(eSpeechTextOnly);

Has something with these commands changes? any help appreciated.  The script ran fine 10 months ago so I presume theres been an update thats changes some code?

thanks.
Title: Re: SetVoiceMode errors (havent used AGS for 10 months)
Post by: Crimson Wizard on Sun 03/08/2014 15:12:00
There were changes in 3.3.0.
Now it is
Code (ags) Select

Speech.VoiceMode = eSpeechVoiceAndText;


Also, please refer to "Upgrading to 3.3" topic in the manual.
Title: Re: SetVoiceMode errors (havent used AGS for 10 months)
Post by: rickious on Tue 05/08/2014 20:18:00
Thanks a bunch mate ;-D