Back to mods
Create Sifting Refabricated project artwork

CurseForge · Minecraft mod

Create Sifting Refabricated

Create Sifting

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which Create Sifting Refabricated release should I use?

Updated 3 years ago
Latest stable file createsifter-1.18.2-1.3.3.g.jar
Game version 1.18.2
Loader Fabric

Create Sifting Refabricated createsifter-1.18.2-1.3.3.g.jar targets 1.18.2 with Fabric. The project page does not say whether it belongs on the client. The project page does not say whether it belongs on the dedicated server. 1 required mod needs a matching file.

Where it goes

Is Create Sifting Refabricated required on the client, server, or both?

The project page does not say whether it belongs on the client. The project page does not say whether it belongs on the dedicated server.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release Fabric
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does Create Sifting Refabricated createsifter-1.18.2-1.3.3.g.jar need?

createsifter-1.18.2-1.3.3.g.jar. Change the file and its required mods may change too.

1 required mod needs a matching file

Install Create Fabric, Fabric API first, but 1 required mod has no matching file for this setup. Do not mix loader builds to force a match. 1 comes through another mod in the chain.

1 listed on this file 1 pulled in by one of those mods
Create Fabric Needed by Create Sifting Refabricated createsifter-1.18.2-1.3.3.g.jar
required
Matching file found Matched file: Create 1.18.2 v0.5.1.i Patch 2
Fabric API Needed by Create Fabric
pulled in
No matching file

1 extra mod was pulled in by another dependency. Indented rows show who needs each one. We only count dependency files that match this setup. A file for another loader does not fill the gap.

Before you install it

Add Create Sifting Refabricated without breaking your instance.

Built for Create Sifting Refabricated createsifter-1.18.2-1.3.3.g.jar. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use createsifter-1.18.2-1.3.3.g.jar. It targets 1.18.2 with Fabric; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    Install Create Fabric, Fabric API first, but 1 required mod has no matching file for this setup. Do not mix loader builds to force a match. 1 comes through another mod in the chain.

  3. 03

    Put it on the correct side

    The project page does not say whether it belongs on the client. The project page does not say whether it belongs on the dedicated server.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside createsifter-1.18.2-1.3.3.g.jar. It opens that exact file at the source.

About this project

What does Create Sifting Refabricated add?

This is the 1.18.2 Fabric Port of https://www.curseforge.com/minecraft/mc-mods/create-sifting

Below is the original information:

Create Sifting

A simple sifter for the amazing create mod. This mod it's meant to be used in modpacks. Only contains very basic ore recipes.

Heavily inspired on ex nihilo sieve.

Meshes

> Works with the sifter or in hand (like create sandpaper) - Tiers: String, Andesite, Zinc, Brass - When in hand it sifts the block in the off-hand.

Sifter

> Automated sifting. Based on the Millstone block works more or less in the same way. You can toss items on top or feed it with any item automated way (hoppers, funnels, chute...) - Right Click with a mesh to add it. - Recipes can have a mesh, but it's not required.

Waterlogged feature

  • Sifters can be waterlogged to get different output.
  • In hand meshes act as waterlogged when the player is in a LiquidBlock

Sifting recipes

  • Put the mesh and the siftable block in the ingredients, in any order.

  • results is a list of items

  • Default processingTime is 200. You can override this value in the recipe.

  • Default waterlogged is false. You can override this value in the recipe.

  • Example: { "type": "createsifter:sifting", "ingredients": [ { "item": "createsifter:andesite_mesh" }, { "item": "minecraft:gravel" } ], "results": [ { "item": "create:copper_nugget", "chance": 0.1 }, { "item": "create:zinc_nugget", "chance": 0.1 }, { "item": "minecraft:iron_nugget", "chance": 0.05 }, { "item": "minecraft:gold_nugget", "chance": 0.15 }, { "item": "minecraft:coal", "chance": 0.1 }, { "item": "minecraft:flint", "chance": 0.1 } ], "processingTime": 500 }

  • Waterlogged Example: { "type": "createsifter:sifting", "ingredients": [ { "item": "createsifter:string_mesh" }, { "item": "minecraft:dirt" } ], "results": [ { "item": "minecraft:kelp", "chance": 0.1 } ], "processingTime": 500, "waterlogged": true }

Thanks to the Creators of Create.

Code inspiration from Create Craft & Additions and the Create mod itself.

KubeJS 5 integration:

  • For minecraft 1.18.2

Adding recipes (server script)


// Basic Example event.recipes.createsifterSifting([Item.of('minecraft:clay').withChance(0.5).toJson(),Item.of('minecraft:redstone').withChance(0.1).toJson()], ['minecraft:sand','createsifter:string\_mesh'])

//Waterlogged example event.recipes.createsifterSifting([Item.of('minecraft:clay').withChance(0.5).toJson()], ['minecraft:sand','createsifter:string\_mesh']).waterlogged() ```

### Adding custom meshes (startup script)

`event.create('example_mesh','createsifter:mesh').displayName('Example mesh')`

## KubeJS 6 integration (tested with `1902.6.0-build.121` version)

- For minecraft `1.19.2`
- KubeJS 6 is in a very active development phase. Breaking changes may happen... be patient plz. I'll try to keep up with updates.
- `withChance` method needs `toJson` to work properly.

### Adding recipes (server script)

``` // event.recipes.createsifterSifting(output[], input[]) // Optional .waterlogged() .processingTime(int time)

// Basic Example event.recipes.createsifterSifting([Item.of('minecraft:clay').withChance(0.5).toJson(),Item.of('minecraft:redstone').withChance(0.1).toJson()], ['minecraft:sand','createsifter:string\_mesh'])

// Waterlogged example event.recipes.createsifterSifting([Item.of('minecraft:clay').withChance(0.5).toJson()], ['minecraft:sand','createsifter:string\_mesh']).waterlogged()

// Custom mesh example. Custom mesh ID comes from the Startup Script event.recipes.createsifterSifting([Item.of('minecraft:glowstone*dust').withChance(0.5).toJson(),Item.of('minecraft:redstone').withChance(0.1).toJson()], ['minecraft:sand','kubejs:example*mesh'])

Adding custom meshes (startup script)

event.create('example_mesh','createsifter:mesh').displayName('Example mesh')

Project description from CurseForge.

Pick your setup

Create Sifting Refabricated by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

1 available setups

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

Create Sifting Refabricated versions and loaders

1 of 1 releases match

Looking for an older file? The official CurseForge project page is in Resources.