• 0

    posted a message on Paint Everything! (+300 New Colored Blocks, Stairs, & Fences!)

    I've thought about this, and it wouldn't be too hard to implement. Could you give me some examples of items that you think you would benefit from being able to dye?

    Posted in: Minecraft Mods
  • 1

    posted a message on Help! Lost my minecraft account...

    I have a youtube channel about minecraft so help.


    And what, this makes you more important than other people that need help? Hah. As far as your problem goes, have you covered all of your bases such as making sure caps lock isn't on?

    Posted in: Discussion
  • 0

    posted a message on Paint Everything! (+300 New Colored Blocks, Stairs, & Fences!)

    Do you mean the paint scraper?

    Posted in: Minecraft Mods
  • 0

    posted a message on Amicus Server [Community] [Whitelisted] [Family]

    Name: Trent ;)
    IGN: _JewC_
    Age: 18
    Where are you from: Ohio
    What you enjoy about Minecraft: Everything. The endless creativity, the communities of people that it creates, and especially the way the game brings people from all walks of life together.
    What you are looking for in a Minecraft community: A group of people that I can eventually call family.
    Why we should accept you: Because I miss you guys :) I went through some life stuff that hit me pretty hard, but am at a point now in my life where I could really use some friends like you guys. (:

    Posted in: PC Servers
  • 0

    posted a message on Paint Everything! (+300 New Colored Blocks, Stairs, & Fences!)
    More than welcome to.
    Posted in: Minecraft Mods
  • 0

    posted a message on More fences, slabs, and stairs?
    My mod has some of the blocks that you talked about, feel free to give it a shot:



    http://www.curse.com/mc-mods/minecraft/223299-paint-everything
    Posted in: Requests / Ideas For Mods
  • 0

    posted a message on Amicus [1.8] [Community] [Whitelisted] [Vanilla Server]
    Name:Trent
    IGN:_JewC_
    Age:17
    What you enjoy about Minecraft: I enjoy the community aspect of Minecraft, as well as the entire process of collecting resources in the beginning, the moving on to build bigger and better things.
    What you are looking for in a Minecraft community: Easy going, laid back players, as well as players who are relatively online consistently. I want to part of an interactive community that, at times, will work together to achieve things one person alone could not do, but also be able to enjoy some leisure "solo" time if they want.
    A bit about yourself: I live in Ohio, and have been playing Minecraft for the past three years. Recently (within the past year) I have written my own mod (it is called Paint Everything), which has really got me involved with the actual Minecraft community, which is something that I have enjoyed every minute of. Any spare time that I have from school is either spent playing basketball and soccer, or hoping on and playing some Minecraft.
    Why we should accept you: I feel that I am a pretty easy going person that can get along with practically anyone, so I feel liking that is something positive that I could bring to your community :)
    Posted in: PC Servers
  • 0

    posted a message on Paint Everything! (+300 New Colored Blocks, Stairs, & Fences!)
    Make sure you are using the "1.7.10-B1.4" version as this update fixed many bugs (including the one you mentioned)
    Posted in: Minecraft Mods
  • 0

    posted a message on Paint Everything! (+300 New Colored Blocks, Stairs, & Fences!)
    Unfortunately slabs are taking longer than expected, expect and update within the week.
    Posted in: Minecraft Mods
  • 0

    posted a message on Paint Everything! (+300 New Colored Blocks, Stairs, & Fences!)
    I am currently working on adding slabs for all building blocks in each of the 15 different colors!
    Posted in: Minecraft Mods
  • 0

    posted a message on Paint Everything! (+300 New Colored Blocks, Stairs, & Fences!)
    Would glass be something that you are interested in? I know vanilla already has stained glass, but I could definitely add some regular glass that can be painted.
    Posted in: Minecraft Mods
  • 0

    posted a message on Paint Everything! (+300 New Colored Blocks, Stairs, & Fences!)
    Quote from _JewC_
    This mod is amazing! I was a little iffy when you had to craft everything to paint, but now that you can just click on blocks to paint them, much better.

    I appreciate the positive feedback! Feel free to list any suggestion/changes that you guys feel would make this mod the best that it can be! :)
    Posted in: Minecraft Mods
  • 0

    posted a message on Forge client help!
    Did you use the same installer for both your client and server installs? Have you attempted to back up files, then try a fresh install of forge for client and server? I've had similar issues when downgrading from 1.7.10 to 1.7.2.
    Posted in: Java Edition Support
  • 1

    posted a message on Paint Everything! (+300 New Colored Blocks, Stairs, & Fences!)
    BIg update guys! You now can simply right click on blocks with the paint brush of your choosing! Also, craft up a Paint Scraper and right click on a block to return it to its original state! Also, added painted dirt! :)
    Posted in: Minecraft Mods
  • 0

    posted a message on Have Item take damage when right clicked?
    I have my code that replaces a block with another block when clicked with my paintbrush, but how would I have the paint brush take damage from that?

    Code:

    public class BlackPaintBrush extends Item {

    public BlackPaintBrush() {
    this.setCreativeTab(PaintEverything.painteverythingTab);
    this.maxStackSize = 1;
    this.setMaxDamage(512);
    this.setNoRepair();
    }


    public boolean onItemUse(ItemStack itemStack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ) {
    if(world.getBlock(x, y, z) == Blocks.stone) {
    world.setBlock(x, y, z, PaintEverything.blockBlackStone);

    }
    if(world.getBlock(x, y, z) == PaintEverything.blockRedStone) {
    world.setBlock(x, y, z, PaintEverything.blockBlackStone);
    }
    return true;
    }


    @SideOnly(Side.CLIENT)
    public void registerIcons(IIconRegister iconRegister) {
    this.itemIcon = iconRegister.registerIcon(PaintEverything.modid + ":" + this.getUnlocalizedName().substring(5));
    }

    }
    Posted in: Modification Development
  • To post a comment, please .