Space Mod (WIP)

Modding , share your ideas for a mod, link to your mod, this is a forum devoted to those who want to mod , offer mods or learn to mod Minecraft!

Moderator: Moderators

Post Reply
User avatar
bamdur123
Sergeant Major
Sergeant Major
Posts: 243
Joined: Fri Oct 15, 2010 7:15 pm
Projects :: Tython-Siege of Darkness Zombie Hotel
Games I'm Playing :: SWBF 1+2
Location: Ohio, USA

Space Mod (WIP)

Post 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:

Image







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
Last edited by bamdur123 on Thu Jun 09, 2011 4:07 pm, edited 7 times in total.
CressAlbane
Master Bounty Hunter
Master Bounty Hunter
Posts: 1519
Joined: Fri Dec 18, 2009 8:02 am
Projects :: CTF Arenas
Games I'm Playing :: Steam- cressalbane2
Location: ¿uoıʇɐɔoן ʎɯ sıɥʇ sı

Re: Space Mod (WIP)

Post 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?
Last edited by CressAlbane on Wed Jun 01, 2011 5:51 pm, edited 1 time in total.
User avatar
commander501stappo
Jedi
Jedi
Posts: 1016
Joined: Tue Sep 28, 2010 8:13 am
Games I'm Playing :: Skyrim BF4 KSP CIV V
xbox live or psn: DarthAppo
Location: In a galaxy very, very close by...

Re: Space Mod (WIP)

Post by commander501stappo »

Igreed! It looks awesome!
User avatar
bamdur123
Sergeant Major
Sergeant Major
Posts: 243
Joined: Fri Oct 15, 2010 7:15 pm
Projects :: Tython-Siege of Darkness Zombie Hotel
Games I'm Playing :: SWBF 1+2
Location: Ohio, USA

Re: Space Mod (WIP)

Post 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 :) ) 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

Code: Select all

entity.motionY += 0.65;
and ill probably release my own source code after the mod
CressAlbane
Master Bounty Hunter
Master Bounty Hunter
Posts: 1519
Joined: Fri Dec 18, 2009 8:02 am
Projects :: CTF Arenas
Games I'm Playing :: Steam- cressalbane2
Location: ¿uoıʇɐɔoן ʎɯ sıɥʇ sı

Re: Space Mod (WIP)

Post 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?
User avatar
bamdur123
Sergeant Major
Sergeant Major
Posts: 243
Joined: Fri Oct 15, 2010 7:15 pm
Projects :: Tython-Siege of Darkness Zombie Hotel
Games I'm Playing :: SWBF 1+2
Location: Ohio, USA

Re: Space Mod (WIP)

Post 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)
CressAlbane
Master Bounty Hunter
Master Bounty Hunter
Posts: 1519
Joined: Fri Dec 18, 2009 8:02 am
Projects :: CTF Arenas
Games I'm Playing :: Steam- cressalbane2
Location: ¿uoıʇɐɔoן ʎɯ sıɥʇ sı

Re: Space Mod (WIP)

Post 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.
User avatar
bamdur123
Sergeant Major
Sergeant Major
Posts: 243
Joined: Fri Oct 15, 2010 7:15 pm
Projects :: Tython-Siege of Darkness Zombie Hotel
Games I'm Playing :: SWBF 1+2
Location: Ohio, USA

Re: Space Mod (WIP)

Post 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
CressAlbane
Master Bounty Hunter
Master Bounty Hunter
Posts: 1519
Joined: Fri Dec 18, 2009 8:02 am
Projects :: CTF Arenas
Games I'm Playing :: Steam- cressalbane2
Location: ¿uoıʇɐɔoן ʎɯ sıɥʇ sı

Re: Space Mod (WIP)

Post by CressAlbane »

A flying vehicle would be fun!
Is the "space" area going to be a new dimension?
User avatar
bamdur123
Sergeant Major
Sergeant Major
Posts: 243
Joined: Fri Oct 15, 2010 7:15 pm
Projects :: Tython-Siege of Darkness Zombie Hotel
Games I'm Playing :: SWBF 1+2
Location: Ohio, USA

Re: Space Mod (WIP)

Post 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
User avatar
commandoCC-9811
Command Sergeant Major
Command Sergeant Major
Posts: 265
Joined: Fri Apr 02, 2010 11:05 pm
Games I'm Playing :: Games. Mostly games.
Location: Right over there... keep looking... *runs away

Re: Space Mod (WIP)

Post 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!
User avatar
linksith
Command Sergeant Major
Command Sergeant Major
Posts: 284
Joined: Mon Jul 12, 2010 12:19 pm
Projects :: Waaay too many projects
Games I'm Playing :: too many
xbox live or psn: me has no xbox
Location: looking for a wifi connection

Re: Space Mod (WIP)

Post 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. :D my friend and I have been dreaming of space in MC.
Post Reply