It's me again, I'm looking for some advice on how to use only 1 weapon of the 8 (at a time) I have in my inventory by only pressing button 1. Here is what I have so far.
I have a working inventory screen that allows me to select which ever weapon I want.
Inventory item: weaponselect (inital value 1, max value

(each number = different weapon)
I have seperate inventory for each weapon, so I can tell if I have found them yet.
Inventory item: Slingshot (inital value 0, max value 1) (0 = don't have, 1 = have)
Inventory item: sword 1 (inital value 0, max value 1) (0 = don't have, 1 = have)
Inventory item: spear (inital value 0, max value 1) (0 = don't have, 1 = have)
and the list continues through all 8 of my weapons...
I was thinking on the lines of something like this:
Special function 1: If weapon select = 3 activate special function 2.
Special function 2: require spear = 1 (do I own it), activate special function 3
Special function 3: create sprite (spear, basicly fire weapon)
Here is my issue, how do I check to see what weapon has been selected and then only use that weapon and not the weapons with a weapon number less than that number.
For example weaponselect inventory = 2 (sword1)
If I create a tile interaction and require weapon select = 2 won't I also get weapons 3-8, because they have atleast 2 in inventory of weaponselect also. It would activate 7 of my sprites (each weapon)
Is there a way to only require a specific amount in inventory and not a minimum or maximum amount of something in inventory? If I can understand this, the rest will be easy for me to finish.
Thanks for help with this one. Sorry if I have confussed you guys, Let me know if I can clear it up...
John