promotional bannermobile promotional banner

Content Creator

A mod for creating items, blocks, fluids and more with crafttweaker

File Details

ContentCreator-1.3.95.jar

  • R
  • Apr 19, 2025
  • 311.01 KB
  • 2.3K
  • 1.12.2+1
  • Forge

File Name

ContentCreator-1.3.95.jar

Supported Versions

  • 1.12.2
  • 1.12

Curse Maven Snippet

Forge

implementation fg.deobf("curse.maven:content-creator-622862:6441396")
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven


-Potion effects can now be defined and registered via zenscript.
-Commissioned by xkforce, example script below:


#loader preinit

import contentcreator.potion.Potion;

var p1 as Potion = Potion.create("notifier", false, 0x88CCFF);

p1.setBeneficial(true)

.setEffectApplier(function(entity, amp) {

if (isNull(entity.world) || entity.world.isRemote()) {

return;

}

//send a server-sided potion info message

entity.sendMessage("Potion amplifier level: " + amp);

})

.setPotionReady(function(duration, amp) {

//return true once per second

return duration % 20 == 0;

})

.setShouldRender(false)

.setShouldRenderHUD(false)

.register();