Hey again.
I was wondering, is it possible to make a Global Message be displayed as speech?
Thanks to anyone who can help
I've made a function for it...
in the script header:
import function SpeakMessage(int,int);
and in the global script's start:
function SpeakMessage(int CharID, int msg){
string messag;
GetMessageText(msg,messag);
DisplaySpeech(CharID, messag);
}
and to display a global message, type it's number in place of int msg, like:
SpeakMessage(EGO, 501);
would make EGO speak the global message 501.