How to temporarily disable all S-grade items (equipment, recipes, materials)?

GaijinDev

Heir
Customer
Hello everyone,


I’m running an Interlude server (Lucera2), and I would like to know if it’s possible to completely block or remove access to all S-grade items (weapons, armor, jewelry, recipes, materials, etc.) using a command or a script — so that players cannot farm, use, craft, trade or even see these items until I decide to activate them later.





My goal is to hide all S-grade content temporarily (including drops and rewards), and then enable it again in a future update (manually or with a command).


Is there any existing method, handler, or best practice to achieve this dynamically?





Any suggestions or examples would be appreciated. Thanks in advance!
 
Using the option to not drop items with id.

put all used items in S grade.

disable or remove NPCs that give recipes for rewards (quests).
 
Hello everyone,


I’m running an Interlude server (Lucera2), and I would like to know if it’s possible to completely block or remove access to all S-grade items (weapons, armor, jewelry, recipes, materials, etc.) using a command or a script — so that players cannot farm, use, craft, trade or even see these items until I decide to activate them later.





My goal is to hide all S-grade content temporarily (including drops and rewards), and then enable it again in a future update (manually or with a command).


Is there any existing method, handler, or best practice to achieve this dynamically?





Any suggestions or examples would be appreciated. Thanks in advance!
1. Disable ItemIds from drop and Sweep
# No drop items (Simple:100500,100501)
NoDropItems =
# No Drop Sweep items
NoDropItemsForSweep =
2. Disable quest with recipes
# Do not load quests with this ID. Example: DisableQuestId = 127, 255
DisableQuestId =
3. Enjoy
 
1. Disable ItemIds from drop and Sweep
# No drop items (Simple:100500,100501)
NoDropItems =
# No Drop Sweep items
NoDropItemsForSweep =
2. Disable quest with recipes
# Do not load quests with this ID. Example: DisableQuestId = 127, 255
DisableQuestId =
3. Enjoy
Thank you very much deazer, it helped me a lot, I had already started hiding the items with <!-- --> lol
 
Back
Top