Undertale Yellow script viewer

← back to main script listing

gml_GlobalScript_scr_text_soundfonts

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

function scr_text_soundfonts() { if (sndfnt_array[0] != -4) { if (message_current < array_length_1d(sndfnt_array)) { if (sndfnt_array[message_current] == 0 && message_current > 0) sndfnt_array[message_current] = sndfnt_array[message_current - 1]; sndfnt = sndfnt_array[message_current]; } } }
()
2
{
3
    if (sndfnt_array[0] != -4)
4
    {
5
        if (message_current < array_length_1d(sndfnt_array))
6
        {
7
            if (sndfnt_array[message_current] == 0 && message_current > 0)
8
                sndfnt_array[message_current] = sndfnt_array[message_current - 1];
9
            sndfnt = sndfnt_array[message_current];
10
        }
11
    }
12
}