Undertale Yellow script viewer

← back to main script listing

gml_GlobalScript_scr_talking_text

(view raw script w/o annotations or w/e)
1
function scr_talking_text
scr_talking_text

function scr_talking_text() { switch (current_char) { case " ": case "*": break; default: audio_stop_sound(snd_footsteps_water_1); audio_play_sound(snd_footsteps_water_1, 20, false); } can_talk = true; }
()
2
{
3
    switch (current_char)
4
    {
5
        case " ":
6
        case "*":
7
            break;
8
        default:
9
            audio_stop_sound(snd_footsteps_water_1);
10
            audio_play_sound(snd_footsteps_water_1, 20, false);
11
    }
12
    can_talk = true;
13
}