Is it possible to empty the player’s inventory? #982
-
hello I would like to make an arena for my game where the player can go back taking the equipment offered only I do not want the player to keep his classic inventory once in the arena. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There are a few things that would prevent you from implementing that as you describe:
I think you could get close, though. You could prompt the player to remove their gear themselves. The event that allows entry to the arena could use |
Beta Was this translation helpful? Give feedback.
There are a few things that would prevent you from implementing that as you describe:
I think you could get close, though. You could prompt the player to remove their gear themselves. The event that allows entry to the arena could use
requires_not_item
for all pieces of equipment. Although, that approach won't work if you use generated items, since you can't know the IDs ahead of time. Also, it might be kind of tedious if you have a lot of items.