Nordgaren / Elden-Ring-Debug-Tool

Debug tool for Elden Ring modding
GNU General Public License v3.0
117 stars 19 forks source link

How to remove items from inventory? #18

Open HevnShadw opened 1 year ago

HevnShadw commented 1 year ago

Is there a way to remove items that can't be discarded normally?

Nordgaren commented 1 year ago

Not yet. Manually setting the inventory slots to 0 is a bad way of doing it, as the game has it's own functions for managing the inventory. As soon as I reverse those functions, I can add removing items as a feature.

Nordgaren commented 1 year ago

A temporary solution is to find the item in the Params -> EquipParamGoods param and turn the isDiscard param on for that item, and you should be able to drop it.

HevnShadw commented 1 year ago

That worked perfectly thank you and great work on the program