1 | if live_call() |
2 | return global.live_result; |
3 | draw_set_alpha(hint_alpha) |
4 | draw_set_font(fnt_battle) |
5 | draw_set_color(c_white) |
6 | draw_set_halign(fa_left) |
7 | draw_text(50, 200, string("{0} - Shoot", global.action_key)) |
8 | if global.option_autoshoot |
9 | { |
10 | draw_set_halign(fa_center) |
11 | draw_text(160, 180, string("{0} - Autofire", global.pause_key)) |
12 | } |
13 | draw_set_halign(fa_right) |
14 | draw_text(270, 200, string("{0} - Dash", global.cancel_key)) |
15 | draw_set_alpha(1) |