Create Sifting

Quick rating

Create Sifting

No reviews yet

Sifter for create

Industrial
Tech
Skyblock
Create-focused
Mod Addon
Mod Loaders
Forge
NeoForge
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Required
Server Required

About

Project Details

Type
Mod
License
GNU Lesser General Public License v3.0 only
Latest Version
Create: Sifter 2.3.0 for mc1.21.1
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

About

Description

Create Sifting

A simple sifter for the amazing Create mod. This mod it's meant to be used in modpacks.

Heavily inspired on ex nihilo sieve.

Dedicated wiki

1.21.1-2.x Version Requires Mechanicals Lib

Version support & documentation

Meshes

Works with the sifter or in hand (like create sandpaper)

  • String, Andesite, Brass, Sturdy
  • Advanced meshes only work with the brass sifter.
  • Configurable mesh durability.
    • By default, only applies to hand sifting.
    • Enchantable with Unbreaking.
  • Added zinc mesh for modpacks.

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.
  • Right Click with empty hand to clear inventories.
    1. Output
    2. Input
    3. Shift + right click: Mesh

Brass Sifter

  • High redstone disables processing
  • Output filter.
  • 8x processing per cycle, configurable.
  • Bigger output capaticy, configurable.

Recipes

Waterlogged feature (optional)

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

Advanced sifter per recipe (optional)

  • "advancedSifter":"true"
  • Recipes can require brass sifter for normal meshes too.

Compact recipes.

  • Recipes with same mesh and input block gets merged allowing easier compat.
  • Current mods:
    • EnderIO
    • Ars nouveau
    • AE2

Recipes examples

KubeJS

  • Remove al Sifting recipes.
ServerEvents.recipes(event => {
  event.remove({ type: 'createsifter:sifting' })
})
  • Chanced output (binding)
Output.of('minecraft:clay', 0.5)
  • Add recipes
ServerEvents.recipes(event => {
  /** 
    createsifter.sifting(Output[] result, Ingredient ingredient, ItemStack mesh)
    .processingTime(int time) // optional, default: 500
    .waterlogged(true) //optional, default: false
    .advancedSifter(true) //optional, default: false
  **/
  event.recipes.createsifter.sifting([Output.of('minecraft:clay',0.5),Output.of('minecraft:redstone')],'minecraft:sand',"createsifter:andesite_mesh")
})
  • Custom meshes
    • Texture location (for this examples): kubejs/assets/kubejs/textures/item/diamond_mesh.png
StartupEvents.registry('item', event => {

    //Basic mesh
    event.create('diamond_mesh','createsifter:mesh')
      .displayName('Diamond Mesh')
      .parentModel("createsifter:block/meshes/mesh")
      .texture("mesh","kubejs:item/diamond_mesh")
      .maxDamage(77) //Mesh durability

    //Advanced mesh
    event.create('advanced_diamond_mesh','createsifter:advanced_mesh')
      .displayName('Advanced Diamond Mesh')
      .parentModel("createsifter:block/meshes/mesh")
      .texture("mesh","kubejs:item/diamond_mesh")
      .texture("frame","micraft:block/diamond_block")
      .maxDamage(200) //Mesh durability

})

Thanks to the Creators of Create.

Create Sifting

A simple sifter for the amazing Create mod. This mod it's meant to be used in modpacks.

Heavily inspired on ex nihilo sieve.

Dedicated wiki

1.21.1-2.x Version Requires Mechanicals Lib

Version support & documentation

Meshes

Works with the sifter or in hand (like create sandpaper)

  • String, Andesite, Brass, Sturdy
  • Advanced meshes only work with the brass sifter.
  • Configurable mesh durability.
    • By default, only applies to hand sifting.
    • Enchantable with Unbreaking
    • Added zinc mesh for modpacks.

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.
  • Right Click with empty hand to clear inventories.
    1. Output
    2. Input
    3. Shift + right click: Mesh

Brass Sifter

  • High redstone disables processing
  • Output filter.
  • 8x processing per cycle, configurable.
  • Bigger output capaticy, configurable.

Recipes

Waterlogged feature (optional)

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

Advanced sifter per recipe (optional)

  • "advancedSifter":"true"
  • Recipes can require brass sifter for normal meshes too.

Compact recipes.

  • Recipes with same mesh and input block gets merged allowing easier compat.
  • Current mods:
    • EnderIO
    • Ars nouveau
    • AE2

Recipes examples

KubeJS

  • Remove al Sifting recipes.
ServerEvents.recipes(event => {
  event.remove({ type: 'createsifter:sifting' })
})
  • Chanced output (binding)
Output.of('minecraft:clay', 0.5)
  • Add recipes
ServerEvents.recipes(event => {
  /** 
    createsifter.sifting(Output[] result, Ingredient ingredient, ItemStack mesh)
    .processingTime(int time) // optional, default: 500
    .waterlogged(true) //optional, default: false
    .advancedSifter(true) //optional, default: false
  **/
  event.recipes.createsifter.sifting([Output.of('minecraft:clay',0.5),Output.of('minecraft:redstone')],'minecraft:sand',"createsifter:andesite_mesh")
})
  • Custom meshes
    • Texture location (for this examples): kubejs/assets/kubejs/textures/item/diamond_mesh.png
StartupEvents.registry('item', event => {
    
    //Basic mesh
	event.create('diamond_mesh','createsifter:mesh')
      .displayName('Diamond Mesh')
      .parentModel("createsifter:block/meshes/mesh")
      .texture("mesh","kubejs:item/diamond_mesh")
      .maxDamage(77) //Mesh durability
	
	//Advanced mesh
	event.create('advanced_diamond_mesh','createsifter:advanced_mesh')
      .displayName('Advanced Diamond Mesh')
      .parentModel("createsifter:block/meshes/mesh")
      .texture("mesh","kubejs:item/diamond_mesh")
      .texture("frame","micraft:block/diamond_block")
      .maxDamage(200) //Mesh durability
	
})

Thanks to the Creators of Create.

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

9.2m
Total Downloads
CurseForge
8.4m
Modrinth
~820,000
Last Updated
CurseForge
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works