Hi.
Can someone please tell me how i can put data weapons ID or armors ID or item ID's into one variable like $game_variables[1] = 1 <--- if check in conditional branch then will be using $game_variables[1] == 1 which will be true if that weapon ID 1 is in inventory and so forth for using same variable adding weapon ID tagged as number 2 in variable like $game_variables[1] = 2 <--- weapon ID 2 and if use in conditional branch $game_variables[1] == 2 is true if weapon ID 2 is in inventory. I could easily do this under conditional branch putting weapons, armors, or items ID into condition but that would take alot of work, time, and one heck of a long page event to process persay if its even under one page. So, to make it more efficient and cleaner, is it possible to just link the whole weapons ID or armors ID or Items ID into one variable can be reference off that variable as 1,2,3,4,5,6,7 equals to 1,2,3,4,5,6,7 ID's in the tag section of the database like weapons, armors, or items? Any help would be appreciated. Thanks =)