Ok, lets say I wanted Variable_1 = (number of certain item)...
how would I do that? is it even possible? because I cant work it out with events...
Thanks in advance!
Why do you need to count the items?
Use the "Call script" event command and type:
$game_variables[X] = $game_party.item_number(Y)
X is the variable ID and Y is the ID of the item. You can also check weapons and armors:
$game_variables[X] = $game_party.weapon_number(Y)
$game_variables[X] = $game_party.armor_number(Y)
Thankyou very much Blizzard! I need it because you use need 5 Iron Bars to make Iron Armor, and stuff like that.