Undertale Yellow script viewer

← back to main script listing

gml_GlobalScript_scr_dialogue_battle_action_selected_action_1_feisty_four

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

function scr_dialogue_battle_action_selected_action_1_feisty_four() //gml_Script_scr_dialogue_battle_action_selected_action_1_feisty_four { message[0] = "* You hold your ground while# the chaos unfolds around you." var act_number = global.act_number switch act_number { case 1: global.last_action_selected = "Action 1 Message 0" global.last_action_selected_2 = "Nothing" global.last_action_selected_3 = "Nothing" break case 2: global.last_action_selected = "Nothing" global.last_action_selected_2 = "Action 1 Message 0" global.last_action_selected_3 = "Nothing" break default: } }
() //gml_Script_scr_dialogue_battle_action_selected_action_1_feisty_four
2
{
3
    message[0] = "* You hold your ground while#  the chaos unfolds around you."
4
    var act_number = global.act_number
5
    switch act_number
6
    {
7
        case 1:
8
            global.last_action_selected = "Action 1 Message 0"
9
            global.last_action_selected_2 = "Nothing"
10
            global.last_action_selected_3 = "Nothing"
11
            break
12
        case 2:
13
            global.last_action_selected = "Nothing"
14
            global.last_action_selected_2 = "Action 1 Message 0"
15
            global.last_action_selected_3 = "Nothing"
16
            break
17
        default:
18
19
    }
20
21
}