Compare commits
No commits in common. "130a75f736299fac18ab1f79609a72a18f091ebd" and "53f77bf8fb257ec4ef4e638b5027fbb9e6092471" have entirely different histories.
130a75f736
...
53f77bf8fb
@ -34,5 +34,3 @@ Y dejar la carpeta con el achivo asi:
|
|||||||
Tras eso, ejecutar el .bat en la carpeta de minecraft para instalar/actualizar los mods. Si salta algo de seguridad, darle a mas informacion y ejecutar igualmente.
|
Tras eso, ejecutar el .bat en la carpeta de minecraft para instalar/actualizar los mods. Si salta algo de seguridad, darle a mas informacion y ejecutar igualmente.
|
||||||
|
|
||||||
Si el servidor da un error de que no se tienen los mismos mods, solo habria que hacer doble click y abrir el archivo updateMods.bat, eso los actualizara automaticamente.
|
Si el servidor da un error de que no se tienen los mismos mods, solo habria que hacer doble click y abrir el archivo updateMods.bat, eso los actualizara automaticamente.
|
||||||
|
|
||||||
## NOTA: NO ACTUALIZAR LOS MODS NUNCA DESDE MODRINTH
|
|
||||||
@ -3,18 +3,8 @@ ServerEvents.recipes(event => {
|
|||||||
// =========================
|
// =========================
|
||||||
// REMOVE OLD RECIPES
|
// REMOVE OLD RECIPES
|
||||||
// =========================
|
// =========================
|
||||||
event.remove({ id: 'create:crushing/tuff' });
|
event.remove({ id: 'jei:/create/crushing/tuff' });
|
||||||
event.remove({ id: 'create:crushing/tuff_recycling' });
|
event.remove({ id: 'jei:/create/crushing/tuff_recycling' });
|
||||||
event.remove({ id: 'create:milling/dripstone_block' });
|
|
||||||
event.remove({ id: 'create:crushing/crimsite' });
|
|
||||||
event.remove({ id: 'create:crushing/crimsite_recycling' });
|
|
||||||
event.remove({ id: 'create:crushing/veridium' });
|
|
||||||
event.remove({ id: 'create:crushing/veridium_recycling' });
|
|
||||||
event.remove({ id: 'create:crushing/asurine' });
|
|
||||||
event.remove({ id: 'create:crushing/asurine_recycling' });
|
|
||||||
event.remove({ id: 'create:crushing/ochrum' });
|
|
||||||
event.remove({ id: 'create:crushing/ochrum_recycling' });
|
|
||||||
|
|
||||||
|
|
||||||
// =========================
|
// =========================
|
||||||
// COMPACTING
|
// COMPACTING
|
||||||
@ -45,7 +35,7 @@ ServerEvents.recipes(event => {
|
|||||||
event.recipes.create.crushing([
|
event.recipes.create.crushing([
|
||||||
Item.of('minecraft:clay_ball').withChance(0.4),
|
Item.of('minecraft:clay_ball').withChance(0.4),
|
||||||
Item.of('3x create:copper_nugget').withChance(0.2)
|
Item.of('3x create:copper_nugget').withChance(0.2)
|
||||||
], 'minecraft:dripstone_block');
|
], 'minecraft:pointed_dripstone');
|
||||||
|
|
||||||
event.recipes.create.crushing([
|
event.recipes.create.crushing([
|
||||||
Item.of('3x create:zinc_nugget').withChance(0.2)
|
Item.of('3x create:zinc_nugget').withChance(0.2)
|
||||||
@ -57,8 +47,7 @@ ServerEvents.recipes(event => {
|
|||||||
// Gravel + Nether Wart (Heated) -> Netherrack
|
// Gravel + Nether Wart (Heated) -> Netherrack
|
||||||
event.recipes.create.mixing('minecraft:netherrack', [
|
event.recipes.create.mixing('minecraft:netherrack', [
|
||||||
'minecraft:gravel',
|
'minecraft:gravel',
|
||||||
'minecraft:nether_wart',
|
'minecraft:nether_wart'
|
||||||
Fluid.of('minecraft:lava', 250)
|
|
||||||
]).heated();
|
]).heated();
|
||||||
|
|
||||||
// Quartz + Blue Dye -> Lapis Lazuli
|
// Quartz + Blue Dye -> Lapis Lazuli
|
||||||
@ -70,29 +59,25 @@ ServerEvents.recipes(event => {
|
|||||||
// NEW: Crimsite + Blackstone (Heated) -> 2x Crimsite
|
// NEW: Crimsite + Blackstone (Heated) -> 2x Crimsite
|
||||||
event.recipes.create.mixing('2x create:crimsite', [
|
event.recipes.create.mixing('2x create:crimsite', [
|
||||||
'create:crimsite',
|
'create:crimsite',
|
||||||
'minecraft:blackstone',
|
'minecraft:blackstone'
|
||||||
Fluid.of('minecraft:lava', 250)
|
|
||||||
]).heated();
|
]).heated();
|
||||||
|
|
||||||
// NEW: Asurine + Basalt (Heated) -> 2x Asurine
|
// NEW: Asurine + Basalt (Heated) -> 2x Asurine
|
||||||
event.recipes.create.mixing('2x create:asurine', [
|
event.recipes.create.mixing('2x create:asurine', [
|
||||||
'create:asurine',
|
'create:asurine',
|
||||||
'minecraft:basalt',
|
'minecraft:basalt'
|
||||||
Fluid.of('minecraft:lava', 250)
|
|
||||||
]).heated();
|
]).heated();
|
||||||
|
|
||||||
// NEW: Ochrum + Sandstone (Heated) -> 2x Ochrum
|
// NEW: Ochrum + Sandstone (Heated) -> 2x Ochrum
|
||||||
event.recipes.create.mixing('2x create:ochrum', [
|
event.recipes.create.mixing('2x create:ochrum', [
|
||||||
'create:ochrum',
|
'create:ochrum',
|
||||||
'minecraft:sandstone',
|
'minecraft:sandstone'
|
||||||
Fluid.of('minecraft:lava', 250)
|
|
||||||
]).heated();
|
]).heated();
|
||||||
|
|
||||||
// NEW: Veridium + Mossy Cobblestone -> 2x Veridium
|
// NEW: Veridium + Mossy Cobblestone -> 2x Veridium
|
||||||
event.recipes.create.mixing('2x create:veridium', [
|
event.recipes.create.mixing('2x create:veridium', [
|
||||||
'create:veridium',
|
'create:veridium',
|
||||||
'minecraft:mossy_cobblestone',
|
'minecraft:mossy_cobblestone'
|
||||||
Fluid.of('minecraft:lava', 250)
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
// =========================
|
// =========================
|
||||||
@ -108,24 +93,4 @@ ServerEvents.recipes(event => {
|
|||||||
Item.of('minecraft:moss_block').withChance(0.2)
|
Item.of('minecraft:moss_block').withChance(0.2)
|
||||||
], '#minecraft:logs');
|
], '#minecraft:logs');
|
||||||
|
|
||||||
|
|
||||||
// Fixing limestone
|
|
||||||
// Remove Garnished limestone milling
|
|
||||||
event.remove({ id: 'garnished:milling/crushed_salt' })
|
|
||||||
|
|
||||||
// Remove Aquatic Ambitions limestone milling
|
|
||||||
event.remove({ id: 'create_aquatic_ambitions:milling/limestone' })
|
|
||||||
|
|
||||||
event.recipes.create.milling([
|
|
||||||
Item.of('garnished:crushed_salt'),
|
|
||||||
|
|
||||||
Item.of('create_aquatic_ambitions:calcium_rich_powder'),
|
|
||||||
Item.of('create_aquatic_ambitions:calcium_rich_powder').withChance(0.5),
|
|
||||||
|
|
||||||
Item.of('create_aquatic_ambitions:suspicious_rock').withChance(0.05)
|
|
||||||
], 'create:limestone')
|
|
||||||
|
|
||||||
// Remove salt from limestone crushing
|
|
||||||
event.remove({id: 'garnished:crushing/crushed_salt'})
|
|
||||||
|
|
||||||
});
|
});
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,28 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
cd "$(dirname "$0")" || exit 1
|
|
||||||
echo "Iniciando"
|
|
||||||
# Check if git is installed
|
|
||||||
if ! command -v git >/dev/null 2>&1; then
|
|
||||||
echo "Git no está instalado"
|
|
||||||
echo "Instálalo desde https://git-scm.com/downloads"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# If not already a git repo, initialize and fetch
|
|
||||||
if [ ! -d ".git" ]; then
|
|
||||||
echo "Git no esta inicializado"
|
|
||||||
git init
|
|
||||||
git remote add origin https://git.sfkao.net/SFKao/All-Of-Create.git
|
|
||||||
git fetch
|
|
||||||
git checkout -t origin/main -f
|
|
||||||
fi
|
|
||||||
echo "Bajando..."
|
|
||||||
# Fetch and pull updates
|
|
||||||
if ! git fetch --progress || ! git pull --rebase --autostash --progress; then
|
|
||||||
echo "Han habido errores actualizando, contactar con SFKao"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Equivalent to pause (wait for user input before closing)
|
|
||||||
read -rp "Presiona Enter para salir..."
|
|
||||||
Loading…
x
Reference in New Issue
Block a user