
[Feature/fix] Changing config files to JSON for KubeJS compatibility
Rimevel opened this issue · 2 comments
When making modpacks, recipe removal can be very streamlined using KubeJS and EMI like this:
function removeNBT(id) {
return id.replace(/\{[^}]*\}/g, "");
}
ServerEvents.recipes((event) => {
let emi = JsonIO.read("emi.json");
let list = [];
emi.hidden_stacks.forEach((id) => {
let segments = removeNBT(id).split(":");
list.push(`${segments[1]}:${segments[2]}`);
});
event.remove({ output: list });
});
This script allows easily removing recipes of any item that was clicked on in EMI while hiding mode is toggled.
Now if this mods config would be JSON instead of JSON5, then this streamlining could be supercharged with all the Item Obliterator features:
//Replacing the "event.remove" line
let obl = JsonIO.read("config/item_obliterator.json");
obl.blacklisted_items = list;
JsonIO.write("config/item_obliterator.json", obl);
I knew it was a bit of a controversial take. I will make an issue over at KubeJS. Have a good day!
JSON5 is superior, instead of asking me to downgrade, suggest kubejs to support json5.
…On Sun, Feb 9, 2025 at 4:45 PM, Rimevel ***@***.***(mailto:On Sun, Feb 9, 2025 at 4:45 PM, Rimevel <<a href=)> wrote:
When making modpacks, recipe removal can be very streamlined using KubeJS and EMI like this:
function
removeNBT
(
id
)
{
return
id
.
replace
(
/
\{
[
^
}
]
*
\}
/
g
,
""
)
;
}
ServerEvents
.
recipes
(
(
event
)
=>
{
let
emi
=
JsonIO
.
read
(
"emi.json"
)
;
let
list
=
[
]
;
emi
.
hidden_stacks
.
forEach
(
(
id
)
=>
{
let
segments
=
removeNBT
(
id
)
.
split
(
":"
)
;
list
.
push
(
`
${
segments
[
1
]
}
:
${
segments
[
2
]
}
`
)
;
}
)
;
event
.
remove
(
{
output
:
list
}
)
;
}
)
;
This script allows easily removing recipes of any item that was clicked on in EMI while hiding mode is toggled.
Now if this mods config would be JSON instead of JSON5, then this streamlining could be supercharged with all the Item Obliterator features:
//Replacing the "event.remove" line
let
obl
=
JsonIO
.
read
(
"config/item_obliterator.json"
)
;
obl
.
blacklisted_items
=
list
;
JsonIO
.
write
(
"config/item_obliterator.json"
,
obl
)
;
—
Reply to this email directly, [view it on GitHub](#97), or [unsubscribe](https://github.com/notifications/unsubscribe-auth/AZFMTECWFQWYAQRK6LUOOHD2O6V6RAVCNFSM6AAAAABWZEVKYGVHI2DSMVQWIX3LMV43ASLTON2WKOZSHA2DAOJRGUZTEOI).
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>