1 |
function scr_dialogue_battle_action_selected_action_3_guardenerscr_dialogue_battle_action_selected_action_3_guardenerfunction scr_dialogue_battle_action_selected_action_3_guardener() //gml_Script_scr_dialogue_battle_action_selected_action_3_guardener
{
if (global.enemy_mode == 0)
{
message[0] = "* You wriggle within your# confines. The MERCY vines# weakened!"
global.last_action_selected = "Nothing"
global.last_action_selected_2 = "Nothing"
global.last_action_selected_3 = "Action 3 Message 0"
}
else
{
message[0] = "* You criticize Guardener for# bugging out and attacking you.# This does not help anyone."
global.last_action_selected = "Nothing"
global.last_action_selected_2 = "Nothing"
global.last_action_selected_3 = "Action 3 Message 1"
}
} () //gml_Script_scr_dialogue_battle_action_selected_action_3_guardener |
2 |
{ |
3 |
if (global.enemy_mode == 0) |
4 |
{ |
5 |
message[0] = "* You wriggle within your# confines. The MERCY vines# weakened!" |
6 |
global.last_action_selected = "Nothing" |
7 |
global.last_action_selected_2 = "Nothing" |
8 |
global.last_action_selected_3 = "Action 3 Message 0" |
9 |
} |
10 |
else |
11 |
{ |
12 |
message[0] = "* You criticize Guardener for# bugging out and attacking you.# This does not help anyone." |
13 |
global.last_action_selected = "Nothing" |
14 |
global.last_action_selected_2 = "Nothing" |
15 |
global.last_action_selected_3 = "Action 3 Message 1" |
16 |
} |
17 |
} |