Minecraft Blogs / Tutorial

Modding in 1.2

  • 267 views, 1 today
  • 1
  • 0
  • 7
TurtleMoviesCo's Avatar TurtleMoviesCo
Level 18 : Journeyman Modder
5
OK I have been having problems finding videos on modding so I figured I would post all the links that I did find.

If you know of any videos for modding for 1.2 or natural spawned plants and/or GUIs please tell me.

Here is what I found. (I did not make any of these videos!)

I also have not watched any of these yet by the way.... so I don't know if they involve modloader or not.

---------------------------------------------------------------------------------------------
Watch this First!

www.youtube.com/watch?v=N_NvirqGkVU set up

Watch this Second!
http://www.youtube.com/watch?v=ZF-RDPMD_t4

Watch These in any order!
www.youtube.com/watch?v=78dCByyd5gg hostile mob

www.youtube.com/watch?v=vzn4TbqWh2o friendly mob

www.youtube.com/watch?v=2ndV5bnjoys Item

www.youtube.com/watch?v=VrMsEsRG11Y Crafting recipe

www.youtube.com/watch?v=jaVfOPfVYzU Block

www.youtube.com/watch?v=WcXJdYlzi_g Smelting

www.youtube.com/watch?v=ICFkeEKXcKQ Naturaly generated Ores/Minerals

www.youtube.com/watch?v=uUFieGm8vDs Food

www.youtube.com/watch?v=_W9vRasFE38 Tools

www.youtube.com/watch?v=yKPl7O6vf70 Block textures diffrent on diffrent sides of block

www.youtube.com/watch?v=io94Zb1hmqw Potion Effect on Food

For more links and information I found this.

http://www.minecraftforum.net/topic/1067901-modloader-with-mc-12-how-to-make-a-mod-tutorials/page__fromsearch__1

Again I take no credit for any of the content on the links.
Tags

Create an account or sign in to comment.

TurtleMoviesCo
03/07/2012 6:42 pm
Level 18 : Journeyman Modder
TurtleMoviesCo's Avatar
Hey can someone tell me why my ore wont spawn?

package net.minecraft.src;

import java.util.Random;

public class mod_EmeraldsN extends BaseMod
{
public void load()
{
ModLoader.registerBlock(emeraldOre);
ModLoader.addName(emeraldOre, "emeraldOre");
}

public static int emeraldoreID = 159;
//Initialization
public static Block emeraldOre;
//Block Definitions
static
{
emeraldOre = new BlockEmeraldOreN(emeraldoreID,0).setHardness(2.0F).setBlockName("EmeraldOre").setResistance(20.0F);
emeraldOre.blockIndexInTexture = ModLoader.addOverride("/terrain.png", "/TMC/emeraldOre.png");
}
public String getVersion()
{
return "Minecraft 1.2.3";
}

public void GenerateSurface(World world, Random rand, int chunkX, int chunkZ)
{
for(int i = 0; i < 45; i++)
{
int randPosX = chunkX + rand.nextInt(16);
int randPosY = rand.nextInt(64);
int randPosZ = chunkZ + rand.nextInt(16);
(new WorldGenMinable(mod_EmeraldsN.emeraldOre.blockID, 20)).generate(world, rand, randPosX, randPosY, randPosZ);
}
}
}
1
Jt9
03/07/2012 5:38 am
Level 68 : High Grandmaster Modder
Jt9's Avatar
hmmmm for me, i might just quit my modding because 1.2 made it HARDER!
1
TurtleMoviesCo
03/07/2012 5:40 am
Level 18 : Journeyman Modder
TurtleMoviesCo's Avatar
This thread is not for stuff like that.... this thread is for helping people mode, not to discourage them from it.
1
Jt9
03/07/2012 6:37 am
Level 68 : High Grandmaster Modder
Jt9's Avatar
yeah i know. if you need help on modding, i can give you my source code! i can show you GUI and how to add plants to world generation
1
TurtleMoviesCo
03/07/2012 6:45 am
Level 18 : Journeyman Modder
TurtleMoviesCo's Avatar
That would be awesome please do.
1
Jt9
03/07/2012 6:47 am
Level 68 : High Grandmaster Modder
Jt9's Avatar
i cant now, ill try later!
1
TurtleMoviesCo
03/07/2012 6:59 am
Level 18 : Journeyman Modder
TurtleMoviesCo's Avatar
Ok really looking forward to the plants and GUI.

When I said plants, yes I want randomly generated plants like flowers but I also want do some with that grow a little like mushrooms but faster! and some that grow like wheat/melons. However I will be happy with any form of plant you can teach me since at the moment I know nothing in that category.

GUI is were I go stuck on my last mod so anything on adding a GUI to a bloc will be awesome too.
1
Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome