1 | function scr_item_remove |
2 | { |
3 | i = 1 |
4 | while (i <= 8) |
5 | { |
6 | if (global.item_slot[i] == argument0) |
7 | { |
8 | while (i < 8) |
9 | { |
10 | global.item_slot[i] = global.item_slot[(i + 1)] |
11 | i += 1 |
12 | } |
13 | global.item_slot[8] = "Nothing" |
14 | return true; |
15 | } |
16 | else |
17 | { |
18 | if (i == 8) |
19 | return false; |
20 | i += 1 |
21 | continue |
22 | } |
23 | } |
24 | } |