1 | function scr_text_increase_auto |
2 | { |
3 | hold = 1; |
4 | characters += (increase * hold); |
5 | if (characters > message_length) |
6 | characters = message_length; |
7 | message_draw = string_copy(message[message_current], 0, characters); |
8 | current_char = string_char_at(message_draw, characters); |
9 | } |