This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2011-04-17 21:12:58

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

MC EasyMod [Minecraft] Developers needed!

OK guys, i got a laptop for my birthday!  Now, i am am making a Program to make modding Minecraft easy.  I am planning on  using Python 2.7 & batch to make it.
All you need to join is knowledge of python & batch!

Developers:
SSSS

What it does:
Backs up Minecraft.jar (Located in /bin folder)
Extracts Minecraft.jar
Installs mod into extracted Minecraft.jar
Compiles Minecraft.jar again  wink

So, please start helping


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#2 2011-04-17 21:15:45

Sunrise-Moon
Scratcher
Registered: 2009-06-27
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

Oh, that's simple. I have two Mac command files that do that for me. Well, they don't install the mod into the jar, but they create a folder containing the contents of Minecraft.jar and you just drag the classes and stuff into the folder, then, once done, just click on the other command file.


http://i1067.photobucket.com/albums/u427/HulKDzN/RebornBlade.png

Offline

 

#3 2011-04-17 21:19:20

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

Sunrise-Moon wrote:

Oh, that's simple. I have two Mac command files that do that for me. Well, they don't install the mod into the jar, but they create a folder containing the contents of Minecraft.jar and you just drag the classes and stuff into the folder, then, once done, just click on the other command file.

Yeah, but it is just meant to make it easy for other users!  It is meant just to use 1 file.
(Could you show me what your code is?)


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#4 2011-04-17 21:25:55

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

Bump!


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#5 2011-04-17 21:32:52

Sunrise-Moon
Scratcher
Registered: 2009-06-27
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

ssss wrote:

Sunrise-Moon wrote:

Oh, that's simple. I have two Mac command files that do that for me. Well, they don't install the mod into the jar, but they create a folder containing the contents of Minecraft.jar and you just drag the classes and stuff into the folder, then, once done, just click on the other command file.

Yeah, but it is just meant to make it easy for other users!  It is meant just to use 1 file.
(Could you show me what your code is?)

My code only works for Mac, I think, but here you go:
Command file one:

Code:

cd ~
mkdir mctmp
cd mctmp
jar xf ~/Library/Application\ Support/minecraft/bin/minecraft.jar

Command file two:

Code:

cd ~/mctmp
rm META-INF/MOJANG_C.*
jar uf ~/Library/Application\ Support/minecraft/bin/minecraft.jar ./
cd ..
rm -rf mctmp

http://i1067.photobucket.com/albums/u427/HulKDzN/RebornBlade.png

Offline

 

#6 2011-04-17 22:03:13

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

thanks.  It seems i don't need to convert much  big_smile


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#7 2011-04-18 01:14:19

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

Bump!


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#8 2011-04-20 21:17:11

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

Bump -_-


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#9 2011-04-20 21:23:10

TuffGhost
Scratcher
Registered: 2010-09-06
Posts: 500+

Re: MC EasyMod [Minecraft] Developers needed!

why make a program when you can just use winrar


http://i56.tinypic.com/vr8xvs.jpg

Offline

 

#10 2011-04-20 21:23:51

urhungry
Scratcher
Registered: 2009-07-03
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

I would help, but I know no coding of any sort.

Offline

 

#11 2011-04-20 21:23:56

soupoftomato
Scratcher
Registered: 2009-07-18
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

TuffGhost wrote:

why make a program when you can just use winrar

winrar made tons of useless backups of stuff that wasn't even mine


I'm glad to think that the community will always be kind and helpful, the language will always be a fun and easy way to be introduced into programming, the motto will always be: Imagine, Program, Share - Nomolos

Offline

 

#12 2011-04-20 21:27:12

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

urhungry wrote:

I would help, but I know no coding of any sort.

I was actually thinking of using Panther or BYOB


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#13 2011-04-22 20:55:44

gbear605
Scratcher
Registered: 2008-03-06
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

I'll help.  Not really much knowledge of python, but a little of batch  tongue .  I do have a lot of experience with modding though.  And maybe you could do a thing where it gets mods from a website, then adds them into minecraft.  Batch code for installing mods, doesn't work yet though.  Replace NoMod with the name of the mod, and create a folder containing all of the mods .class files called the name of the mod in the same directory as this, this also only works for macs  tongue

Code:

DIR=`dirname "$0"`
MOD=NoMod

echo Installing $MOD
echo Gbear605's mod install script, based on the mod install script in Smith_61's Gunpowder mod.
cd "$DIR"
mkdir Install$MOD
cd "$DIR"/Install$MOD
mkdir mctmp
cd mctmp
echo point1
jar xf ~/Library/Application\ Support/minecraft/bin/minecraft.jar
echo point2
cp -r "$DIR"/$MOD/* "$DIR"/Install$MOD/mctmp/
rm META-INF/MOJANG_C.*

jar uf ~/Library/Application\ Support/minecraft/bin/minecraft.jar ./

cd ..

rm -rf mctmp

cd ..

rm -rf Install$MOD


echo Appears to have installed $MOD successfully.

Yeah, I'm mostly inactive.  I check in once in a while though.  If you want to contact me, I have a contact form at my website, http://escratch.org

Offline

 

#14 2011-04-22 20:57:53

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

gbear605 wrote:

I'll help.  Not really much knowledge of python, but a little of batch  tongue .  I do have a lot of experience with modding though.  And maybe you could do a thing where it gets mods from a website, then adds them into minecraft.  Batch code for installing mods, doesn't work yet though.  Replace NoMod with the name of the mod, and create a folder containing all of the mods .class files called the name of the mod in the same directory as this, this also only works for macs  tongue

Code:

DIR=`dirname "$0"`
MOD=NoMod

echo Installing $MOD
echo Gbear605's mod install script, based on the mod install script in Smith_61's Gunpowder mod.
cd "$DIR"
mkdir Install$MOD
cd "$DIR"/Install$MOD
mkdir mctmp
cd mctmp
echo point1
jar xf ~/Library/Application\ Support/minecraft/bin/minecraft.jar
echo point2
cp -r "$DIR"/$MOD/* "$DIR"/Install$MOD/mctmp/
rm META-INF/MOJANG_C.*

jar uf ~/Library/Application\ Support/minecraft/bin/minecraft.jar ./

cd ..

rm -rf mctmp

cd ..

rm -rf Install$MOD


echo Appears to have installed $MOD successfully.

Only works for mac?

Anyway, i could create a directory:

ww.cyberkidscountry.com/Mods/1.5_01


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#15 2011-04-22 21:00:21

gbear605
Scratcher
Registered: 2008-03-06
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

ssss wrote:

gbear605 wrote:

I'll help.  Not really much knowledge of python, but a little of batch  tongue .  I do have a lot of experience with modding though.  And maybe you could do a thing where it gets mods from a website, then adds them into minecraft.  Batch code for installing mods, doesn't work yet though.  Replace NoMod with the name of the mod, and create a folder containing all of the mods .class files called the name of the mod in the same directory as this, this also only works for macs  tongue

Code:

DIR=`dirname "$0"`
MOD=NoMod

echo Installing $MOD
echo Gbear605's mod install script, based on the mod install script in Smith_61's Gunpowder mod.
cd "$DIR"
mkdir Install$MOD
cd "$DIR"/Install$MOD
mkdir mctmp
cd mctmp
echo point1
jar xf ~/Library/Application\ Support/minecraft/bin/minecraft.jar
echo point2
cp -r "$DIR"/$MOD/* "$DIR"/Install$MOD/mctmp/
rm META-INF/MOJANG_C.*

jar uf ~/Library/Application\ Support/minecraft/bin/minecraft.jar ./

cd ..

rm -rf mctmp

cd ..

rm -rf Install$MOD


echo Appears to have installed $MOD successfully.

Only works for mac?

Anyway, i could create a directory:

ww.cyberkidscountry.com/Mods/1.5_01

We also could do something on escratch.org

And I have no idea if it would work on linux etc. as I have only a mac.

I just based that off of a install.command that came with a mod (gun powder mod by smith 61)


Yeah, I'm mostly inactive.  I check in once in a while though.  If you want to contact me, I have a contact form at my website, http://escratch.org

Offline

 

#16 2011-04-22 21:02:18

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

gbear605 wrote:

ssss wrote:

gbear605 wrote:

I'll help.  Not really much knowledge of python, but a little of batch  tongue .  I do have a lot of experience with modding though.  And maybe you could do a thing where it gets mods from a website, then adds them into minecraft.  Batch code for installing mods, doesn't work yet though.  Replace NoMod with the name of the mod, and create a folder containing all of the mods .class files called the name of the mod in the same directory as this, this also only works for macs  tongue

Code:

DIR=`dirname "$0"`
MOD=NoMod

echo Installing $MOD
echo Gbear605's mod install script, based on the mod install script in Smith_61's Gunpowder mod.
cd "$DIR"
mkdir Install$MOD
cd "$DIR"/Install$MOD
mkdir mctmp
cd mctmp
echo point1
jar xf ~/Library/Application\ Support/minecraft/bin/minecraft.jar
echo point2
cp -r "$DIR"/$MOD/* "$DIR"/Install$MOD/mctmp/
rm META-INF/MOJANG_C.*

jar uf ~/Library/Application\ Support/minecraft/bin/minecraft.jar ./

cd ..

rm -rf mctmp

cd ..

rm -rf Install$MOD


echo Appears to have installed $MOD successfully.

Only works for mac?

Anyway, i could create a directory:

ww.cyberkidscountry.com/Mods/1.5_01

We also could do something on escratch.org

And I have no idea if it would work on linux etc. as I have only a mac.

I just based that off of a install.command that came with a mod (gun powder mod by smith 61)

Fair enough -_-

Do i create the directory?


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#17 2011-04-22 21:04:27

gbear605
Scratcher
Registered: 2008-03-06
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

ssss wrote:

gbear605 wrote:

ssss wrote:


Only works for mac?

Anyway, i could create a directory:

ww.cyberkidscountry.com/Mods/1.5_01

We also could do something on escratch.org

And I have no idea if it would work on linux etc. as I have only a mac.

I just based that off of a install.command that came with a mod (gun powder mod by smith 61)

Fair enough -_-

Do i create the directory?

I think escratch.org would be better, as it is a shorter url, and it is related to scratch, so we could name the program something to do with scratch.  IDK, we can do it on yours for now at least, but I suggest if you work on code, making that a variable.  I'll have to go soon though.


Yeah, I'm mostly inactive.  I check in once in a while though.  If you want to contact me, I have a contact form at my website, http://escratch.org

Offline

 

#18 2011-04-22 21:05:38

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

gbear605 wrote:

ssss wrote:

gbear605 wrote:


We also could do something on escratch.org

And I have no idea if it would work on linux etc. as I have only a mac.

I just based that off of a install.command that came with a mod (gun powder mod by smith 61)

Fair enough -_-

Do i create the directory?

I think escratch.org would be better, as it is a shorter url, and it is related to scratch, so we could name the program something to do with scratch.  IDK, we can do it on yours for now at least, but I suggest if you work on code, making that a variable.  I'll have to go soon though.

alright, seems fine -_-!

But make wgar a variable?


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#19 2011-04-22 21:06:43

gbear605
Scratcher
Registered: 2008-03-06
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

ssss wrote:

gbear605 wrote:

ssss wrote:

Fair enough -_-

Do i create the directory?

I think escratch.org would be better, as it is a shorter url, and it is related to scratch, so we could name the program something to do with scratch.  IDK, we can do it on yours for now at least, but I suggest if you work on code, making that a variable.  I'll have to go soon though.

alright, seems fine -_-!

But make wgar a variable?

I mean the url that it would get mods from, so we can easily change it later.  BTW, do you know of any good python tutorials?

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.


Yeah, I'm mostly inactive.  I check in once in a while though.  If you want to contact me, I have a contact form at my website, http://escratch.org

Offline

 

#20 2011-04-22 21:08:11

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

gbear605 wrote:

ssss wrote:

gbear605 wrote:


I think escratch.org would be better, as it is a shorter url, and it is related to scratch, so we could name the program something to do with scratch.  IDK, we can do it on yours for now at least, but I suggest if you work on code, making that a variable.  I'll have to go soon though.

alright, seems fine -_-!

But make wgar a variable?

I mean the url that it would get mods from, so we can easily change it later.  BTW, do you know of any good python tutorials?

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

I really only know how to teach it myself.  I use Scratch as an easy base  tongue


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#21 2011-04-22 21:09:21

gbear605
Scratcher
Registered: 2008-03-06
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

ssss wrote:

gbear605 wrote:

ssss wrote:


alright, seems fine -_-!

But make wgar a variable?

I mean the url that it would get mods from, so we can easily change it later.  BTW, do you know of any good python tutorials?

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

I really only know how to teach it myself.  I use Scratch as an easy base  tongue

Um, how did you use scratch as a base?  I assume you looked at python programs, and saw what they did, and copied it?


Yeah, I'm mostly inactive.  I check in once in a while though.  If you want to contact me, I have a contact form at my website, http://escratch.org

Offline

 

#22 2011-04-22 21:12:30

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

gbear605 wrote:

ssss wrote:

gbear605 wrote:


I mean the url that it would get mods from, so we can easily change it later.  BTW, do you know of any good python tutorials?

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

The following errors need to be corrected before the message can be posted:

    * At least 60 seconds have to pass between posts. Please wait a little while and try posting again.

I really only know how to teach it myself.  I use Scratch as an easy base  tongue

Um, how did you use scratch as a base?  I assume you looked at python programs, and saw what they did, and copied it?

Well, i went and asked my sister, and'd when i saw the basics, i didn't need anything else, because i knew scratch blocks   big_smile

Ask block ===

raw_input('What's your name')

Comes out as

What's your name? {Type text here}


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#23 2011-04-22 21:13:52

gbear605
Scratcher
Registered: 2008-03-06
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

ssss wrote:

gbear605 wrote:

ssss wrote:


I really only know how to teach it myself.  I use Scratch as an easy base  tongue

Um, how did you use scratch as a base?  I assume you looked at python programs, and saw what they did, and copied it?

Well, i went and asked my sister, and'd when i saw the basics, i didn't need anything else, because i knew scratch blocks   big_smile

Ask block ===

raw_input('What's your name')

Comes out as

What's your name? {Type text here}

Ah, I see, your sis knew python.  I'm looking at tuts. right now.


Yeah, I'm mostly inactive.  I check in once in a while though.  If you want to contact me, I have a contact form at my website, http://escratch.org

Offline

 

#24 2011-04-22 21:15:07

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

gbear605 wrote:

ssss wrote:

gbear605 wrote:


Um, how did you use scratch as a base?  I assume you looked at python programs, and saw what they did, and copied it?

Well, i went and asked my sister, and'd when i saw the basics, i didn't need anything else, because i knew scratch blocks   big_smile

Ask block ===

raw_input('What's your name')

Comes out as

What's your name? {Type text here}

Ah, I see, your sis knew python.  I'm looking at tuts. right now.

tongue   

I might make some some day, using youtube, & Scratch (as a reference)


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#25 2011-04-22 21:25:13

gbear605
Scratcher
Registered: 2008-03-06
Posts: 1000+

Re: MC EasyMod [Minecraft] Developers needed!

Cool, BTW, when you make any code, release access to it for me.  I'd like to look at it for reference.


Yeah, I'm mostly inactive.  I check in once in a while though.  If you want to contact me, I have a contact form at my website, http://escratch.org

Offline

 

Board footer