Jump to content
  • Home
  • Files
  • Docs
  • Merch
Topics
  • All Content

  • This Topic
  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Non-Forge
  • Minecraft General
  • Let's Plays and other Videos!
  • We are learning help us loan
Sign in to follow this  
Followers 1
Dongelvert

We are learning help us loan

By Dongelvert, May 22, 2017 in Let's Plays and other Videos!

  • Reply to this topic
  • Start new topic

Recommended Posts

Dongelvert    0

Dongelvert

Dongelvert    0

  • Tree Puncher
  • Dongelvert
  • Members
  • 0
  • 1 post
Posted May 22, 2017

Hey guys we are starting our youtube and want people to help tell us what you like to watch on youtube (minecraft videos) we would like to see what people enjoy and what they dont if you wish to check what we have done so here is a link Here

If you have and suggestions leave them bellow or on the video we will reply to all

  • Quote

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Insert image from URL
×
  • Desktop
  • Tablet
  • Phone
Sign in to follow this  
Followers 1
Go To Topic Listing



  • Recently Browsing

    No registered users viewing this page.

  • Posts

    • gendeathrow
      [1.14.4] [SOLVED] Replace a Block on World Gen

      By gendeathrow · Posted 15 minutes ago

      Just to give an updated on this. I did finally get the block to replace other blocks. This is more of a demo than what I'm actually doing. Replacing water with a new type of water does not have the intended effects that I would like. As I think it breaks some of the game mechanics now. I will still play around with it. But the code for anyone else that would like to try this for their projects.  This doesn't feel like the most cleanest way of doing it. Seems a bit heavy scanning each block in a chunk again. But it works.   public class FluidGenReplace extends Feature<NoFeatureConfig> { public FluidGenReplace(Function<Dynamic<?>, ? extends NoFeatureConfig> configFactoryIn) { super(configFactoryIn); } public static Block fromBlock = Blocks.WATER; // change this to suit your need public static Block toBlock = Blocks.SLIME_BLOCK; // change this to suit your need @Override public boolean place(IWorld worldIn, ChunkGenerator<? extends GenerationSettings> generator, Random rand, BlockPos pos, NoFeatureConfig config) { try { IChunk currentChunk = worldIn.getChunk(pos); // get Chunk int startX = currentChunk.getPos().getXStart(); // get starting X of chunk int startZ = currentChunk.getPos().getZStart(); // get starting Z of chunk int endX = currentChunk.getPos().getXEnd(); // get ending X of chunk int endZ = currentChunk.getPos().getZEnd(); // get ending Z of chunk int startY = 0; // get starting X of chunk (In this case 0) int endY = worldIn.getSeaLevel(); // get ending X of chunk (only replacing up to sea level to reduce amount of scaninng. ) for (int x = startX; x <= endX; ++x) { for (int z = startZ; z <= endZ; ++z) { for (int y = startY; y <= endY; ++y) { BlockState state = worldIn.getBlockState(new BlockPos(x, y, z)); Block block = state.getBlock(); if (block == fromBlock) { worldIn.setBlockState(new BlockPos(x, y, z), toBlock.getDefaultState(), 2); } } } } } catch (Exception e) { } return false; } }      
    • MightyAhmed
      Immediate Crash On Any Version Of Forge

      By MightyAhmed · Posted 18 minutes ago

      ok thanks im headed there now!
    • diesieben07
      Immediate Crash On Any Version Of Forge

      By diesieben07 · Posted 19 minutes ago

      Best place probably their discord.
    • MightyAhmed
      Immediate Crash On Any Version Of Forge

      By MightyAhmed · Posted 24 minutes ago

      how?
    • diesieben07
      Immediate Crash On Any Version Of Forge

      By diesieben07 · Posted 27 minutes ago

      Ask the authors.
  • Topics

    • gendeathrow
      3
      [1.14.4] [SOLVED] Replace a Block on World Gen

      By gendeathrow
      Started Sunday at 04:20 AM

    • MightyAhmed
      60
      Immediate Crash On Any Version Of Forge

      By MightyAhmed
      Started November 10

    • Space Cat
      1
      Forge doesn't show up in launcher

      By Space Cat
      Started 47 minutes ago

    • matt1999rd
      19
      [1-14-newer] how to make a button with a specified texture ?

      By matt1999rd
      Started Saturday at 04:04 PM

    • DragonITA
      1
      [1.14.4] How to create a custom Portal and Dimension?

      By DragonITA
      Started 3 hours ago

  • Who's Online (See full list)

    • gendeathrow
    • mooncat39
    • Cerandior
    • Filip4223
    • oitsjustjose
    • AkosM
    • MightyAhmed
  • All Activity
  • Home
  • Non-Forge
  • Minecraft General
  • Let's Plays and other Videos!
  • We are learning help us loan
  • Theme
  • Contact Us
  • Discord

Copyright © 2019 ForgeDevelopment LLC · Ads by Curse Powered by Invision Community