Page 1 of 1
Space Mod (WIP)
Posted: Mon May 30, 2011 1:59 am
by bamdur123
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
http://www.youtube.com/watch?v=5LJU2aAqNtk
-Update 2
Added super moonsand
allows jump to be 2 times higher
cooler texture
-Update 3
Added chaos stone
might be a rare resource for a special tool or weapon
might be removed
Re: Space Mod (WIP)
Posted: Wed Jun 01, 2011 4:13 pm
by CressAlbane
Wow! That looks really fun. I'll download this when you release it. How did you add the jumping effect?
EDIT: Can you tell me how to add a new texture for a new block?
Re: Space Mod (WIP)
Posted: Wed Jun 01, 2011 5:10 pm
by commander501stappo
Igreed! It looks awesome!
Re: Space Mod (WIP)
Posted: Wed Jun 01, 2011 9:04 pm
by bamdur123
Thx guys. there are 2 ways to add a new texture to a block. through terrain.png and the java command
Code: Select all
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
![Smile :)](./images/smilies/icon_smile.gif)
) and as far as editing terrain.png (in temp/bin folder) i use gimp at 800% view but you can use adobe
edit: to get my jumping effect
it involves this
and ill probably release my own source code after the mod
Re: Space Mod (WIP)
Posted: Thu Jun 02, 2011 6:48 am
by CressAlbane
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?
Re: Space Mod (WIP)
Posted: Thu Jun 02, 2011 10:44 pm
by bamdur123
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)
Re: Space Mod (WIP)
Posted: Fri Jun 03, 2011 9:28 pm
by CressAlbane
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.
Re: Space Mod (WIP)
Posted: Sat Jun 04, 2011 4:59 am
by bamdur123
cool. i might add somethign like that.
Update-Added Super moon sand- 2 moon sand in crafting table, double the jump .
-Planned
Anti gravity boots - either let you fly or no damage when you were them (falling)
a flying vehicle of some sort
Re: Space Mod (WIP)
Posted: Sat Jun 04, 2011 9:14 am
by CressAlbane
A flying vehicle would be fun!
Is the "space" area going to be a new dimension?
Re: Space Mod (WIP)
Posted: Sat Jun 04, 2011 3:50 pm
by bamdur123
kind of, im planning it be a new "biome" kind of like the nether you get there through a portal.
new update in first post
Re: Space Mod (WIP)
Posted: Tue Jun 28, 2011 4:10 pm
by commandoCC-9811
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!
Re: Space Mod (WIP)
Posted: Thu Dec 15, 2011 10:00 am
by linksith
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.
![Very Happy :D](./images/smilies/icon_biggrin.gif)
my friend and I have been dreaming of space in MC.