Instead of using inventory to handle the throwing part, you might be able to just use a collision definition. If you have the throw button create some sprite called "ThrowingHands", then you can define a collision definition between ThrowingHands and the thing you picked up. If you define it so that ThrowingHands Repels or bounces the sprite you picked up, then you don't need to keep track of what your carrying by using inventory, and the throwing will happen automatically. Set ThrowingHands to use a short path and go at very high speed (in the direction that you want the player to throw) and delete at the end of the path. If you just check "A and B swap velocities" for the collision definition, the hands should cause the sprite you are carryong to take the velocity of the hands, if you are carrying anything. And if you aren't carrying anything the hands will just throw and have no effect. Make sure the hands are set to follow path relative to starting point, and make the hands start relative to the player sprite.