Doing that will increase the number of total items, so unless you make a variable for each item... I would use an array for the items, to make one use DIM. DIM ITEM[10] will make a ten element array with the name ITEM, which means ten variables in the list ITEM. Then each element could represent an item, for example ITEM[3] (the third element) could represent your number of potions.