1 | function scr_talking_author |
2 | { |
3 | switch current_char |
4 | { |
5 | case " ": |
6 | case "*": |
7 | break |
8 | default: |
9 | audio_stop_sound(Author) |
10 | audio_play_sound(Author, 20, false) |
11 | } |
12 | |
13 | switch current_char |
14 | { |
15 | case ".": |
16 | case ",": |
17 | case "?": |
18 | case "!": |
19 | break |
20 | default: |
21 | can_talk = true |
22 | } |
23 | |
24 | } |