hi! Wanted to create a graphical overlay that can be skipped only by clicking or pressing a key...I guess is an easy task but i can't figure it out.
function hquadroblu_Look()
{
player.Say("un quadro blu.");
Overlay* myOverlay = Overlay.CreateGraphical(150, 45, 11, true);
Wait(1000);
eSkipAnyKeyOrMouseClick;
myOverlay.Remove();
GiveScore(5);
thank you very much in advance and sorry again for the question
Use
WaitMouseKey(1000);
eSkipAnyKeyOrMouseClick is an enum value you can assign to Speech.SkipStyle, not a command.
thank you very much! :smiley: