Jump to content

fisherman77

Members
  • Posts

    23
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

fisherman77's Achievements

Tree Puncher

Tree Puncher (2/8)

2

Reputation

  1. I am having this same problem as well. If it helps at all, I'm on a Mac using Terminal and Forge src version 10.12.0.1012:
  2. Well, found and fixed it. Turned out that there were 2 errors, the other being in a model file that I put out of the build path (I guess recompile ignores whether it's in the build path of Eclipse or not). Anyways, thank you very much!
  3. Darn. Still getting errors. I'll work on it. Would redownloading MCP help?
  4. Darn. The class was in "reobf", so it didn't do anything. What would you recommend I do from here?
  5. Just tried that. Not working -- I also have checked the src folder and the WorldGenPaleocraftTree1 or whatever isn't there.
  6. Hello. I'm having an error with my recompile.sh. Whenever I try to recompile, I get the same error: The one error that isn't about deprecated classes is this one: /Users/Buck/Desktop/Coding/Java/Mod Making/Forge 1.6.2/forge/mcp/src/minecraft/bladeking68/paleocraft/dimension/WorldGenPaleocraftTree1.java:89: cannot find symbol symbol : variable treesapling1 location: class fisherman77.paleocraft.common.Paleocraft boolean isSoil = (soil != null && soil.canSustainPlant(par1World, par3, par4 - 1, par5, ForgeDirection.UP, (Blocktree1sapling)fisherman77.paleocraft.common.Paleocraft.treesapling1)); However, WorldGenPaleocraftTree1.java has been deleted (I checked). Paleocraft.java:
  7. Both fixes put together have fixed it. Big thank you.
  8. I see. So what would you say would be the best solution?
  9. So then, should I raise the y coordinates to 256 to where I end up with something like this instead? int yCoord = random.nextInt(256); EDIT: Thank you, that helped. Now I'm getting an error with a different part of the code where I'm trying to make sure that the block below is dirt: Error: The troubled lines: Line 66: k1 = par1World.getBlockId(l1, i1 -1, j1); Line 175: (new WorldGenGrapeTree(false, 9, 0, 0, false)).generate(world, random, xCoord, yCoord, zCoord); Entire code available in first post.
  10. Hello. This is the second time that I have gotten this error report. It seems to happen whenever I try to add world generation. Even when I take all the mods affiliated with world generation out of the build path, it still happens. Here is the error: WorldGenGrapeTree.java:
  11. I have mobs who need to spawn near the player's spawn. I'm going to generate a monster spawner near there.
  12. Hello. I was wondering how you could get the spawn location for purposes of world generation. It used to be something like: world.worldInfo.getSpawnX(); Now it has changed, so I was taking a look at world.getSpawnLocation, but I don't know how I could get the specific, x, y, and z coordinates, all of which you need for generation (my current code using randomness for generation): @Override public void generate(Random random, int chunkX, int chunkZ, World world, IChunkProvider chunkGenerator, IChunkProvider chunkProvider) { BiomeGenBase b = world.getBiomeGenForCoords(chunkX, chunkZ); if(b.biomeName.equals("Plains") || b.biomeName.equals("Extreme Hills")) { for(int i = 0; i < 10; i++) { int xCoord = chunkX + random.nextInt(16); int yCoord = random.nextInt(16); int zCoord = chunkZ + random.nextInt(16); /** Custom WorldGenTutorialTree block **/ (new WorldGenGrapeTree(false, 9, 0, 0, false)).generate(world, random, xCoord, yCoord, zCoord); } } }
  13. Hello! I'm a frequent visitor to the Forge forums and an avid Forge modder, but the day before yesterday, I logged onto the Forge forums only to find out that my IP has been banned for something I never did! Here's a screenshot: For proof, you can check my history here, I believe: http://www.minecraftforge.net/forum/index.php?action=profile;area=showposts;sa=topics;u=4868 I was in the middle of making a new tutorial for my fisherman77's Modding Tutorials page on the Minecraft Forums and downloading the newest 1.6.1 version of Forge. I have already tried speaking the Minecraft Forge IRC, but it tells me that it is not able to send a message to the channel. Ugh, frustration... but what can I do. Please help me. Has anyone else ever experienced this? BTW, I'm posting this via my friends computer, so that's why I'm able to access the forums right now.
×
×
  • Create New...

Important Information

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