1 | function scr_jevil_check |
2 | { |
3 | var item_knife = false; |
4 | var item_tail = false; |
5 | var chapter = 1; |
6 | var result = scr_get_ura_value(chapter, global.filechoice); |
7 | if (result == 0) |
8 | exit; |
9 | if (result == 3) |
10 | { |
11 | item_knife = true; |
12 | item_tail = true; |
13 | } |
14 | else |
15 | { |
16 | item_knife = result == 1; |
17 | item_tail = result == 2; |
18 | } |
19 | if (item_knife) |
20 | global.tempflag[36] = 2; |
21 | else if (item_tail) |
22 | global.tempflag[36] = 1; |
23 | } |