1 | event_inherited() |
2 | if (interact == 1) |
3 | { |
4 | scr_text() |
5 | is_talking = 1 |
6 | switch npc_flag |
7 | { |
8 | case 0: |
9 | with (msg) |
10 | { |
11 | message[0] = "* I wonder if only children have# to deal with this." |
12 | message[1] = "* Monsters climbing all over your# head, I mean." |
13 | } |
14 | npc_flag += 1 |
15 | break |
16 | case 1: |
17 | with (msg) |
18 | message[0] = "* Got any good tips on getting# footprints out of fur?" |
19 | break |
20 | } |
21 | |
22 | } |