Okay, so I'm trying to update my mod to 1.6.2. Everything is going along just fine, but when I try to add the textures, this is the error it gives me. Note, this is when I run startclient, not recompile.
== MCP 8.04 (data: 8.04, client: 1.6.2, server: 1.6.2) ==
"scalac" is not found on the PATH. Scala files will not be recompiled
[20:23:32] 2013-08-19 20:23:32 [CLIENT] [INFO] Setting user: Player47
[20:23:32] 2013-08-19 20:23:32 [CLIENT] [INFO] (Session ID is null)
[20:23:33] 2013-08-19 20:23:33 [CLIENT] [INFO] LWJGL Version: 2.9.0
[20:23:33] 2013-08-19 20:23:33 [CLIENT] [INFO] Reloading ResourceManager: Defaul
t
[20:23:33]
[20:23:33] Starting up SoundSystem...
[20:23:33] Initializing LWJGL OpenAL
[20:23:33] (The LWJGL binding of OpenAL. For more information, see http://w
ww.lwjgl.org)
[20:23:33] OpenAL initialized.
[20:23:33] 2013-08-19 20:23:33 [CLIENT] [SEVERE] Using missing texture, unable t
o load: minecraft:textures/blocks/spike_block.png
[20:23:33] 2013-08-19 20:23:33 [CLIENT] [SEVERE] Using missing texture, unable t
o load: minecraft:textures/blocks/easter_egg.png
[20:23:34] 2013-08-19 20:23:34 [CLIENT] [SEVERE] Using missing texture, unable t
o load: minecraft:textures/blocks/slow_block.png
[20:23:34] 2013-08-19 20:23:34 [CLIENT] [SEVERE] Using missing texture, unable t
o load: minecraft:textures/blocks/spring_block.png
[20:23:34] 2013-08-19 20:23:34 [CLIENT] [SEVERE] Using missing texture, unable t
o load: minecraft:textures/blocks/super_block.png
[20:23:34] 2013-08-19 20:23:34 [CLIENT] [SEVERE] Using missing texture, unable t
o load: minecraft:textures/blocks/spark_block.png
[20:23:34]
[20:23:36] 2013-08-19 20:23:36 [CLIENT] [SEVERE] Realms: Invalid session id
I've put the textures into the textures folder and the minecraft.jar, and I've made sure that I'm using the same name for the texture in all places. Any help would be greatly appreciated.
PS: In case you're wondering what the mod is, there is a link to it in my signature.
Okay, here's the code. Just to let you know, I code by adding directly to the class files, not by making all those new "modname" folders and such. This is because the first good tutorial I found did it like that.
public static final Block superBlock = (new BlockSuperBlock(200)).setHardness(1.0F).setStepSound(soundStoneFootstep).setLightValue(0.8F).setUnlocalizedName("superblock").func_111022_d("super_block");
public static final Block slowBlock = (new BlockSlowBlock(201)).setHardness(1.0F).setStepSound(soundStoneFootstep).setLightValue(0.8F).setUnlocalizedName("slowblock").func_111022_d("slow_block");
public static final Block sparkBlock = (new BlockSparkBlock(202)).setHardness(1.0F).setStepSound(soundStoneFootstep).setLightValue(0.8F).setUnlocalizedName("sparkblock").func_111022_d("spark_block");
public static final Block springBlock = (new BlockSpringBlock(203)).setHardness(1.0F).setStepSound(soundStoneFootstep).setLightValue(0.8F).setUnlocalizedName("springblock").func_111022_d("spring_block");
public static final Block spikeBlock = (new BlockSpikeBlock(204)).setHardness(1.0F).setStepSound(soundStoneFootstep).setLightValue(0.8F).setUnlocalizedName("spikeblock").func_111022_d("spike_block");
public static final Block easterEgg = (new BlockEasterEgg(205)).setHardness(1.0F).setStepSound(soundStoneFootstep).setLightValue(0.8F).setUnlocalizedName("easteregg").func_111022_d("easter_egg");
PS: the "func_111022_d" thing is the texture thing, right?
"scalac" is not found on the PATH. Scala files will not be recompiled
[20:23:32] 2013-08-19 20:23:32 [CLIENT] [INFO] Setting user: Player47
[20:23:32] 2013-08-19 20:23:32 [CLIENT] [INFO] (Session ID is null)
[20:23:33] 2013-08-19 20:23:33 [CLIENT] [INFO] LWJGL Version: 2.9.0
[20:23:33] 2013-08-19 20:23:33 [CLIENT] [INFO] Reloading ResourceManager: Defaul
t
[20:23:33]
[20:23:33] Starting up SoundSystem...
[20:23:33] Initializing LWJGL OpenAL
[20:23:33] (The LWJGL binding of OpenAL. For more information, see http://w
ww.lwjgl.org)
[20:23:33] OpenAL initialized.
[20:23:33] 2013-08-19 20:23:33 [CLIENT] [SEVERE] Using missing texture, unable t
o load: minecraft:textures/blocks/spike_block.png
[20:23:33] 2013-08-19 20:23:33 [CLIENT] [SEVERE] Using missing texture, unable t
o load: minecraft:textures/blocks/easter_egg.png
[20:23:34] 2013-08-19 20:23:34 [CLIENT] [SEVERE] Using missing texture, unable t
o load: minecraft:textures/blocks/slow_block.png
[20:23:34] 2013-08-19 20:23:34 [CLIENT] [SEVERE] Using missing texture, unable t
o load: minecraft:textures/blocks/spring_block.png
[20:23:34] 2013-08-19 20:23:34 [CLIENT] [SEVERE] Using missing texture, unable t
o load: minecraft:textures/blocks/super_block.png
[20:23:34] 2013-08-19 20:23:34 [CLIENT] [SEVERE] Using missing texture, unable t
o load: minecraft:textures/blocks/spark_block.png
[20:23:34]
[20:23:36] 2013-08-19 20:23:36 [CLIENT] [SEVERE] Realms: Invalid session id
PS: In case you're wondering what the mod is, there is a link to it in my signature.
public static final Block slowBlock = (new BlockSlowBlock(201)).setHardness(1.0F).setStepSound(soundStoneFootstep).setLightValue(0.8F).setUnlocalizedName("slowblock").func_111022_d("slow_block");
public static final Block sparkBlock = (new BlockSparkBlock(202)).setHardness(1.0F).setStepSound(soundStoneFootstep).setLightValue(0.8F).setUnlocalizedName("sparkblock").func_111022_d("spark_block");
public static final Block springBlock = (new BlockSpringBlock(203)).setHardness(1.0F).setStepSound(soundStoneFootstep).setLightValue(0.8F).setUnlocalizedName("springblock").func_111022_d("spring_block");
public static final Block spikeBlock = (new BlockSpikeBlock(204)).setHardness(1.0F).setStepSound(soundStoneFootstep).setLightValue(0.8F).setUnlocalizedName("spikeblock").func_111022_d("spike_block");
public static final Block easterEgg = (new BlockEasterEgg(205)).setHardness(1.0F).setStepSound(soundStoneFootstep).setLightValue(0.8F).setUnlocalizedName("easteregg").func_111022_d("easter_egg");
Yes, it's in there.