1 | function scr_inventory_check_space |
2 | { |
3 | var i = 1 |
4 | while (i <= 8) |
5 | { |
6 | if (global.item_slot[i] == "Nothing") |
7 | return true; |
8 | else |
9 | { |
10 | if (i == 8) |
11 | return false; |
12 | i++ |
13 | continue |
14 | } |
15 | } |
16 | } |