Globalmente remover/borrar/sacar un item/arma/armadura/etc the TODOS los inventarios y Warehouse/stash
En newproject_db->Console o Querry si es EP2:
UPDATE t_inven00 SET a_plus0 = ('0') WHERE a-item_idx0 = the item number from t_item;
UPDATE t_inven00 SET a_wear_pos0 = ('-1') WHERE a-item_idx0 = the item number from t_item;
UPDATE t_inven00 SET a_flag= NULL WHERE a-item_idx0 = the item number from t_item;
UPDATE t_inven00 SET a_count0 = ('0') WHERE a-item_idx0 = the item number from t_item;
UPDATE t_inven00 SET a_serial0= ('0') WHERE a-item_idx0 = the item number from t_item;
UPDATE t_inven00 SET a_used0= ('-1') WHERE a-item_idx0 = the item number from t_item;
UPDATE t_inven00 SET a_item_idx0 = ('-1') WHERE a-item_idx0 = the item number from t_item;
Aclaraciones:
-the item number from t_item->El ID del Item en la tabla "t_item".
-Tienen que hacer esto con los 10 t_inven(xx) y de vuelta con los 10 t_stash(xx) en newproject_db.
-En caso de que sea una pieza de una armadura o arma, tambien tiene que hacer lo mismo con a_item_option0 por 4