201 comments
-
LockedStickyREAD THE DESCRIPTION!!!!!!!!
READ THE DESCRIPTION!!!!!!!!
READ THE DESCRIPTION!!!!!!!!
READ THE DESCRIPTION!!!!!!!!
READ THE DESCRIPTION!!!!!!!!
READ THE DESCRIPTION!!!!!!!!
If you ask me a question answered in the description I will give you a condescending answer.
I'd say "you've been warned" but if it got to that point you wouldn't have read this either so.... (Hey! A free condescending example!)
(Sorry, nothing personal. Nexus users and their general ability tonotread have broken me, and I don't deal well with customer service roles and people asking stupid obvious questions.) -
LockedSticky1.1 removes the 'gems' options because the items wound up going to the wrong inventory location.
If you were one of those whom didn't make a save backup before buying from an option marked as UNTESTED and then went and saved, I've been told you can use Item Box Editor to remove them.You can alternatively use the "Temporarily Make Appraisal Items Sellable" file to sell the desired items and then disable the temp mod.
Thanks to HyoxX for pointing this out.
So going by the comments, I gather it made some of them sellable and some not. Might be the sell price being 0 (which wouldn't explain why some would be sellable and some not), I might be able to iterate on it but.....
With people in the comments just claiming it doesn't work and I don't know what I'm doing..... I didn't f*#@ up my save, so no, I don't have items I shouldn't have in the first place and therefore can't test selling them.
File's just hidden, you can all go back to the item box editor or something.
KEEP SAVE BACKUPS NEXT TIME AND DON'T BUY s#*! CLEARLY MARKED AS UNTESTED AND THEN SAVE YOUR GAME. -
EDITED. IMPROVED.
IF YOU ARE HAVING PROBLEM WITH MELDING GEMS AND ANCIENT WEAPONS. FOUND A FIX,
YOU JUST HAVE TO WORK FOR IT
NEED 2 MODS
ITEM COST TWEAKS AND MHWS EDITOR BOTH MADE BY THE SAME AUTHOR
https://www.nexusmods.com/monsterhunterwilds/mods/26 ITEM COST TWEAKS
https://www.nexusmods.com/monsterhunterwilds/mods/32?tab=description MHWS
I will try to teach you how, I apologize if its confusing.
1. DOWNLOAD BOTH, MHWS & ITEM COST TWEAKS
2. OPEN ITEM COST TWEAKS ZIP
3. EXTRACT " Item Cost Tweaks - Sell & Buy Price (Natives) " FOLDER
4. FOLLOW MHWS INSTRUCTION, EXTRACT AND RUN.
5. ON MHWS CLICK OPEN (TOP LEFT), Item Cost Tweaks - Sell & Buy Price (Natives) KEEP CLICKING UNTIL YOU FIND ItemData.user.3
6.ON THE TOP RIGHT " DESCRIPTION " TYPE IN "APPRAISED" ON TOP MIDDLE " TYPE "(CATEGORY), TYPE IN ' GEM '. THESE ARE ALL THE ITEMS THAT ARE NOT NEEDED TO BE SOLD WHICH CAUSES PROBLEMS.
7. NOW ALL THOSE ITEMS SHOULD HAVE CHECK ON THEIR "OUTBOX" MEANING NOT SALEABLE OR ACCESSIBLE. UNCHECK THEM ON "OUTBOX"
8.SAVE
9. REPLACE THE OLD WITH MODIFIED Item Cost Tweaks - Sell & Buy Price (Natives) INSIDE THE "ITEM COST TWEAKS ZIP".
10. NOW INSTALL VIA FLUFFY MOD MANAGER. MAKE SURE TO SELECT THE FILE YOU MODIFIED.
11. DONE
12. RUN GAME AND NOW YOU CAN SELL THOSE ITEMS.
I FOUND THIS OUT WHEN I SAW " AndersonHank " COMMENT AND DECIDED TO FIGURE IT OUT MYSELF.-
i love you
-
less caps would be appreciated....it comes across as if you yell at idiots.
-
For my simple brain, I just go with the easier route (I guess). BTW Thank you for all these MODS.
-
This makes the Artian items sellable alright.
Now you also need to add items found with "SPHERE" which are the jewel ones using the method explained above.
Or use the input field itemId instead as long as you edit them all :
156 Mystery Orb - Armor
157 Glowing Orb - Armor
158 Ancient Orb - Armor
619 Mystery Orb - Sword
620 Glowing Orb - Sword
621 Ancient Orb - Sword
Do not touch the armor spheres if you used sphere to search.
Note : The temporary file provided doesnt cover those at this time -
Thank you so much! Thanks to you, I was able to sell those troublesome orbs.
-
This makes the Artian items sellable alright.
Now you also need to add items found with "SPHERE" which are the jewel ones using the method explained above.
Or use the input field itemId instead as long as you edit them all :
156 Mystery Orb - Armor
157 Glowing Orb - Armor
158 Ancient Orb - Armor
619 Mystery Orb - Sword
620 Glowing Orb - Sword
621 Ancient Orb - Sword
Do not touch the armor spheres if you used sphere to search.
Note : The temporary file provided doesnt cover those at this time
Just like the author said.
Type in GEM in the "Type" Filter/Category to be safe. Although when I checked the optional file made by the author it is already there for everyone's convenience.
This is PST 2:00 AM 03/03/25 -
so, dont buy that thing too?
-
Thanks to HyoxX for pointing this out.
:'( -
But why you want to sell them? I want to buy them and use them
-
So I understand these currently aren't functional, is this something you think you might be able to fix, or are we just SoL on the decos? All good if that's the case, I'm just curious. Thank you for your hard work Synthlight.
-
Thanks for your info.
but I have a question about that.
I accidently bought 9999 of "Fresh honey".
I tried to find fresh honey in the MHWS with your way.
but this item has been already uncheck on "Outbox" and it couldn't be sold at the shop in the game.
how can I solve this problem?
-
-
this is missing the items used to trade with villagers
-
For those who bought the gems stuff and cannot meld or maybe even the artian weapon stuff or any other item you should not have bought with this mod because it was not tested yet (the dev did warn us), here is the fix:
- Download Item Box Editor: https://www.nexusmods.com/monsterhunterwilds/mods/102?tab=description
- In the zip file, go to reframework>autorun>ItemBoxEditor_EN-US.lua
- Open ItemBoxEditor_EN-US.lua using a code/text editor (I used VS Code).
- Search for
changeItemNumSlider = "Select Changed Num (1~9999)"
" and change it tochangeItemNumSlider = "Select Changed Num (0~9999)"
- Search for
addItemToPouchSlider = "Select Add Num (1~9999)"
and change it toaddItemToPouchSlider = "Select Add Num (0~9999)"
- Search for
existedSliderChanged, existedSliderNewVal = imgui.slider_int(I18N.changeItemNumSlider, existedSelectedItemNum, 1,
and change it to
9999)existedSliderChanged, existedSliderNewVal = imgui.slider_int(I18N.changeItemNumSlider, existedSelectedItemNum, 0,
9999) - Search for
addNewSliderChanged, addNewSliderNewVal = imgui.slider_int(I18N.addItemToPouchSlider, addNewItemNum, 1, 9999)
and change it toaddNewSliderChanged, addNewSliderNewVal = imgui.slider_int(I18N.addItemToPouchSlider, addNewItemNum, 0, 9999)
- Save the file (should update inside the zip but if not, save it to desktop then replace the file in the zip with the updated one).
- Install the updated mod by following the instructions in the original page of Item Box Editor (honestly, I just dragged the zip file into Fluffy Mod Manager and it installs it by itself when I turn it on)
- Start your game.
- Load into a lobby completely (I did online single player).
- Open Item Box Editor by following their instructions.
- Click "Read In-Game Item Box".
- Look for what you want to get rid of in your box (for me, it was at the bottom of the item list).
- Select the item.
- Move slider to 0.
- Click "Confirm Change"
- Done, item is now gone.
Hopefully this will help others as it is what worked for me. - Download Item Box Editor: https://www.nexusmods.com/monsterhunterwilds/mods/102?tab=description
-
hey why is not working for me
-
how to read lol
-
It's unfortunate that it's not possible to select and purchase the jewels that I want.
-
Hi, why are some capsules not displayed in the trunk?
-
Excuse me. I installed "Temporarily Make Appraisal Items Sellable" to sell broken gems, but I still can't sell them. Can you help me?
I turned off the "Shop Tweaks" mod and only turned on the "Temporarily Make Appraisal Items Sellable" mod before trying to sell them. -
I READ THE DESCRIPTION!!!!!!!!
I READ THE DESCRIPTION!!!!!!!!
I READ THE DESCRIPTION!!!!!!!!
I READ THE DESCRIPTION!!!!!!!!
I READ THE DESCRIPTION!!!!!!!!
I READ THE DESCRIPTION!!!!!!!!
I so want to be a di** right now, but I should be thankful for your mod. Seriously... most people will read your description... and not ask any dumb questions. -
Why are there no mushroom and herb items for sale? Because there are no tranquilizer balls for capture, I need to buy sleep grass and paralysis mushrooms to mix them myself...