Jump to content

[1.3.2] TeeLuk's PrinterBlock & SpecialArmor


pitman-87

Recommended Posts

 

3uq672et.png

 

[embed=425,349]

[/embed]

 

 

nkhlubfh.png

 

[embed=425,349]

[/embed]

 

All Mods are working at SSP, SMP and LAN!

 

Downloads:

 

SpecialArmor 1.3.2

mirror  previous versions

 

PrinterBlock 1.3.2b

mirror  previous versions

 

 

Sources of the other mods (last version 1.2.5)

 

HD textures for Printerblock

 

 

How to install:

 

Put the zip-files into the mods-folder (gets generated by modloader/forge).

 

SpecialArmor Description

 

 

this mod gives you armor with that you can do special things

 

fubg5noo.png <- Cape: You can glide with it

 

pit9a3ab.png <- Speed Legs: You can run faster

 

k3scggqb.png <- Diving Helmet: You do not drown under water

 

bf8rxmth.png <- Fireplate: You can't die in Lava/Fire with it - inflames all mobs in a area of 2 blocks - if you press G, a 5x5 field of fire will appear | if you hold the G button a while before you released it, the field will increase by 1-10 blocks (max = 15x15 blocks)

 

rpq9of2y.png <- Heavy Boots: You're slower and you fall faster (dont ask me why there are such boots, it wasnt my idea)

 

afbuh5cy.png <- Spring: Is needed to craft something

 

dobt4do8.png <- Jump Boots: You can jump higher (5 Blocks) - no falldamage

 

gw3toqsd.png <- Magic substance: Is needed to craft things - You dont need to craft it in this order

 

9jthz2bj.png <- Magic Boots: If you go over special blocks, they will be other blocks

|previous block -> next block (if you go over it)|

water->ice

lava->obsidian

dirt->grass

cobblestone->cleanstone

gold/iron/coal/diamondores->cleanstone (1gold/iron/coal/diamond jumps out, actually its only to break down faster)

 

vt78iafx.png <- Hover Boots: You can go over water/lava and if you are on air and hold the space button, you glide a short time

 

5jpdxmgv.png <- Obsidian Plate: You get no falldamage

 

xy6cw4cb.png <- Chain: Is needed to craft chain armor

 

g55fhu3l.pngcpbnxtem.pngy38n6gzw.pnge6voauv6.png <- Chain armor: Its the chain armor that is already ingame...

 

a66oz944.png <- Slime Helmet: (from SlimeCraft) You can stick and move on the ceiling

 

7ybzppgr.png <- TNT Plate: If you press G, it produces a explosion at your place and you dont get hurt from this explosion

 

usxejbxx.pngu3ukdwe6.png <- Flower Plate: Sometimes it spreads flowers 1 block next to you if its a grass block

 

bxppgc85.png <- Rocket: Is needed to craft something

 

d5h8pu3h.png <- Jetpack middle: Is needed to craft something

 

uyx4u8f2.png <- Jetpack: If you press the jump-key, you'll fly - No falldamage - If you put on the speed legs you are faster by flying

 

5q33yg6g.png <- Skates: On the land your slower but on ice you dont slip and your faster

 

gwmuculu.pngs3riqkrk.pngcjjn9mn9.png5dyij5mk.png <- Pork Armor: If you put on all the armor stuff, you'll get half a heart every 10 seconds

 

ltnpf26f.pngxihlgc26.pngju7mxhmd.pngqgnlhnyx.png <- Cooked Pork Armor: If you put on all the armor stuff, you'll get a heart every 10 seconds

 

csdemjuq.png <- Time-Helmet: If you put this helmet on, the time will speed up

 

pxdc95rm.png <- Doublejump Boots: You can jump 2 times

 

dlksnlef.png <- Dispenser Plate: If you have arrows in your inventory, the plate will shoot the arrows automatically on all mobs in a area of 10 blocks

 

 

 

PrinterBlock Description

 

 

 

With the printer block, you can paint with the different wool color and then you can place the wool in the world

Maybe you need this if you paint much in your world

 

 

ro3y8ba8.png

 

jzq4afgq.png

 

ewxc3tm4.png

 

2a43yuxt.png

 

5sexadof.png

 

nkhlubfh.png

 

j7lwhmuv.png

 

 

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • my arrow wont move at all it would stay mid air and show no collision   my Entity class: package net.jeezedboi.epicraft.entity.custom; import net.jeezedboi.epicraft.init.ModItems; import net.minecraft.entity.EntityType; import net.minecraft.entity.LivingEntity; import net.minecraft.entity.projectile.AbstractArrowEntity; import net.minecraft.item.ItemStack; import net.minecraft.network.IPacket; import net.minecraft.util.math.EntityRayTraceResult; import net.minecraft.world.Explosion; import net.minecraft.world.World; import net.minecraftforge.fml.network.NetworkHooks; public class ExplosiveArrowEntity extends AbstractArrowEntity { // default constructor, required to register the entity public ExplosiveArrowEntity(EntityType<ExplosiveArrowEntity> entityType, World world) { super(entityType, world); } public ExplosiveArrowEntity(EntityType<ExplosiveArrowEntity> entityType, double x, double y, double z, World world) { super(entityType, x, y, z, world); } // the constructor used by the ArrowItem public ExplosiveArrowEntity(EntityType<ExplosiveArrowEntity> entityType, LivingEntity shooter, World world) { super(entityType, shooter, world); } // the item stack to give the player when they walk over your arrow stuck in the ground @Override protected ItemStack getArrowStack() { return new ItemStack(ModItems.EXPLOSIVE_ARROW.get()); } @Override protected void onEntityHit(EntityRayTraceResult result) { super.onEntityHit(result); // this, x, y, z, explosionStrength, setsFires, breakMode (NONE, BREAK, DESTROY) this.world.createExplosion(this, this.getPosX(), this.getPosY(), this.getPosZ(), 4.0f, true, Explosion.Mode.BREAK); } // called each tick while in the ground @Override public void tick() { if (this.timeInGround > 60){ this.world.createExplosion(this, this.getPosX(), this.getPosY(), this.getPosZ(), 4.0f, true, Explosion.Mode.BREAK); this.remove(); } } // syncs to the client @Override public IPacket<?> createSpawnPacket() { return NetworkHooks.getEntitySpawningPacket(this); } } my item class :   package net.jeezedboi.epicraft.item.custom; import net.jeezedboi.epicraft.entity.custom.ExplosiveArrowEntity; import net.jeezedboi.epicraft.init.ModEntityTypes; import net.minecraft.entity.LivingEntity; import net.minecraft.entity.projectile.AbstractArrowEntity; import net.minecraft.item.ArrowItem; import net.minecraft.item.ItemStack; import net.minecraft.world.World; public class ExplosiveArrowItem extends ArrowItem { public ExplosiveArrowItem(Properties props) { super(props); } @Override public AbstractArrowEntity createArrow(World world, ItemStack ammoStack, LivingEntity shooter) { ExplosiveArrowEntity explosiveArrowEntity = new ExplosiveArrowEntity(ModEntityTypes.EXPLOSIVE_ARROW.get(), shooter, world); return explosiveArrowEntity; } } other stuffs: public static final RegistryObject<Item> EXPLOSIVE_ARROW = ITEMS.register("explosive_arrow", () -> new ExplosiveArrowItem(new Item.Properties().group(ModItemGroup.Epic_Items))); public static final RegistryObject<EntityType<ExplosiveArrowEntity>> EXPLOSIVE_ARROW = ENTITY_TYPES.register("explosive_arrow", () -> EntityType.Builder.create((EntityType.IFactory<ExplosiveArrowEntity>) ExplosiveArrowEntity::new, EntityClassification.MISC) .size(0.5F, 0.5F).build("explosive_arrow")); mappings channel: 'snapshot', version: '20210309-1.16.5'
    • may i ask what it was that fixed it, I'm having the same problem and its frustrating because I'm making an origin.
    • I need to accesses byPath field of net.minecraft.client.renderer.texture.TextureManager. As I found out I need to use accesstransformer.cfg file and make the field public via it. In this file field names look like f_<numbers>. And I was unable to figure out, how to get those. It seems like it is connected to something called mappings (thing left after Minecraft decompile process). How can I get such a name for a class field?
    • The game crashed whilst rendering overlay Error: java.lang.OutOfMemoryError: Java heap space Exit Code: -1   Crash Report:                                              Log: https://pastebin.com/9NMLr5bD       https://pastebin.com/av6Q2jCf Password: gpTq3Gvkc5                     qdF0BeJGYN   Any suggestions what should i do here?
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.