I'm trying to add shaped crafting recipes to a server. No errors were given when loading, and I cannot craft them. It was put into the server scripts folder.
Here's my code:
event.shaped('minecraft:skeleton_skull', [
'SAS',
'FSF',
'BFB'
], {
S: 'minecraft:quartz',
A: 'immersiveengineering:ingot_hop_graphite',
F: 'mekanism:block_fluorite',
B: 'minecraft:bone'
})
event.shaped('minecraft:netherite_upgrade_smithing_template', [
'SNS',
'NDN',
'ENE'
], {
S: 'ae2:fluix_upgrade_smithing_template',
N: 'minecraft:netherite_ingot',
D: 'minecraft:diamond',
E: 'minecraft:netherrack'
})
})```