
Blue_Atlas
Members-
Content Count
132 -
Joined
-
Last visited
Community Reputation
3 NeutralAbout Blue_Atlas
-
Rank
Creeper Killer
Converted
-
Gender
Undisclosed
-
Personal Text
Will probably be making mistakes please be patient with me
Recent Profile Visitors
2320 profile views
-
I don't know exactly what you need to do but I think it needs to be something along the lines of Blocks.WOOL.getDefaultState().withProperty(); Thing is I have not messed with wool so I don't know what properties it has or what you need to put inside the withProperty() part
-
I'm using this method to set the sky color in my biome class and I'm trying to make it a dark green, does anyone know of a value that does that? @SideOnly(Side.CLIENT) public int getSkyColorByTemp(float currentTemperature) { return 0; }
-
I'm still trying to figure this out if anyone could help
-
I'm following this tutorial for creating a dimension but I don't know how to make biomesForGeneration my own list of biomes. Here is my code: public class FelChunkGenerator implements IChunkGenerator { private final World worldObj; private Random random; private Biome[] biomesForGeneration; private List<Biome.SpawnListEntry> mobs = Lists.newArrayList(new Biome.SpawnListEntry(EntityZombie.class, 100, 2, 2)); private MapGenBase caveGenerator = new MapGenCaves(); private NormalTerrainGenerator terraingen = new NormalTerrainGenerator(); public FelChun
-
I think in a previous version of forge it was assigned somewhere in TerrainGen as InitMapGenEvent.EventType.CAVE but got changed. however I managed to find that so I'm all good now
-
I'm running on the newest recommended version of forge and this line of code has an error that CAVE cannot be resolved to a variable caveGenerator = TerrainGen.getModdedMapGen(caveGenerator, CAVE); I think it is something that does not exist in that code anymore but I don't know what I need to change it to to get the error to go away
-
I already saw that but it looks like it would create something like the aether dimension from how it talks about what you are going to do in the tutorial
-
could anyone point me in the direction of a good tutorial for creating a multi biome overworld style dimension?
-
sorry really should have looked at code before posting here, thanks for the help!
-
BlockBase: package com.atlas.thelostportal.objects.blocks; import com.atlas.thelostportal.objects.init.ModBlocksInit; import com.atlas.thelostportal.objects.init.ModItemsInit; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.ItemBlock; public class BlockBase extends Block { public BlockBase(String name, Material material, CreativeTabs tab, float hardness, float resistence, String tool, int harvestLevel) { super(material); setUnlocalizedName(name); setRegistryName(name); set
-
this block: public static final Block CHORUS_STONE = new BlockBase("chorus_stone", Material.ROCK, Main.lostportaltab, 2.5F, 45.0F, "pickaxe", 1); does not explode when i detonate tnt next to it yet endstone does
-
I have some values for my blocks blast resistances but vanilla blocks that apparently have the same values explode when my blocks don't. are the actual values different from those on the wiki for vanilla blocks?
-
I have a few recipes and none of them are working here is one of them { "type": "minecraft:crafting_shaped", "pattern": [ "SSS", "SFS", "SCS" ], "key": { "S": { "item": "minecraft:stone" }, "C": { "item": "thelostportal:catalyst" }, "F": { "item": "minecraft:furnace" } }, "result": { "item": "thelostportal:non_energy_forge", "count": 1 } } I think I wrote the recipe right but it isn
-
(figured out)nether portal portal block rotation
Blue_Atlas replied to Blue_Atlas's topic in Modder Support
nvm looked and found .withRotation(Rotation.CLOCKWISE_90) function -
I am currently messing with having a block place the portal block from the nether portal and am trying to change which axis it is on here is my current code for setting a block to portal world.setBlockState(pos.up(), Blocks.PORTAL.getDefaultState().withProperty(BlockPortal.AXIS, value)); what value do I need for value to make it face along the x and z axis?