well i am currnetly working on a long time mod, basically what it is is space.
there will be a portal thats craftable and you go through tis and it caries you up to space. space is always dark and will have several new mobs and blocks. i finished one block today ( i started today) and im goign to revise the code soon
I thought of a new name (Moonrock) lol, i dont feel like changign code
Pictures go here:
updates soon^^
-Update 1
Added Modloader support,
Moonsand (might be changed to moonstone later) breakable by pickaxe
Moonsand has new texture
public Moonsand(int blockID)
{
super(blockID, 30, Material.wood);
blockIndexInTexture = 124;//138? is block number in terrian.thing,
//edit, you can only see your texture after reobfuscincation (spellfail) but //it works
}
public int getBlockTextureFromSide(int side)
{
if(side==1) //Top of block, not needed since im using texture on all //sides
{
return 124;
}
return blockIndexInTexture;
Thats how notch does it, but if you do it this way it might not have compatability with other mods and future updates. therse a modloader way thats lets you add custom overrides
(i might make a tutorial ) and as far as editing terrain.png (in temp/bin folder) i use gimp at 800% view but you can use adobe
I figured out how to do the jumping effect earlier, and I know how to change which texture file the block calls, but where do I put my edited terrain.png so the game will reobfuscate it?
you take the terrain.png out of temp/bin/minecraft(ithink) and place it in your minecraft.jar your using for teh mod (place yoru deobfuscated files in minecraft.jar too and delete meta-inf folder)
Thanks!
Here's an idea for the mod:
Once you have mined "moon sand", you can put it in the crafting table for "moon sand dust". The dust can then be crafted with swords and pickaxes (diamond and iron only) to increase the durability.
This looks awesome! I was thinking of like for a big time mod making a star wars-based mod, and making it so that you can travel to other planets a bit like the portal. This looks great! I can see a lot of potential coming from this, so keep up the work!
commandoCC-9811 wrote:This looks awesome! I was thinking of like for a big time mod making a star wars-based mod, and making it so that you can travel to other planets a bit like the portal. This looks great! I can see a lot of potential coming from this, so keep up the work!
That would be cool. Or maybe you could do something like the ring in stargate for your portal thing and then have the entrance to space by hitting the sky at a certain speed or with a certain vehicle or vehicle type making a requirement of certain resources. Talking about this makes me want to learn to mod with java and help you. my friend and I have been dreaming of space in MC.