This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
Quote from Trainman42 How do you do these things? I honestly dont know how to do this. Thanks! Mac OSX 10.7.4 is my iMac specs. Thanks!
def download(url): import urllib webFile = urllib.urlopen(url) localFile = open(url.split('/')[-1], 'w') localFile.write(webFile.read()) webFile.close() localFile.close() def move(): import shutil shutil.move("~/Library/Application Support/minecraft/bin/minecraft.jar", "~/Library/Application Support/minecraft/bin/minecraft132.jar") shutil.move("minecraft.jar", "~/Library/Application Support/minecraft/bin/minecraft.jar") download("http://assets.minecraft.net/12w36a/minecraft.jar") move()
Need your server status on your website? Check out mcapi.us!
@Syfaro
-
View User Profile
-
View Posts
-
Send Message
Retired StaffWhat do you mean? You wish to modify the jar files, or switch them?
-
View User Profile
-
View Posts
-
Send Message
Retired StaffThen paste the following:
def download(url): import urllib webFile = urllib.urlopen(url) localFile = open(url.split('/')[-1], 'w') localFile.write(webFile.read()) webFile.close() localFile.close() def move(): import shutil shutil.move("~/Library/Application Support/minecraft/bin/minecraft.jar", "~/Library/Application Support/minecraft/bin/minecraft132.jar") shutil.move("minecraft.jar", "~/Library/Application Support/minecraft/bin/minecraft.jar") download("http://assets.minecraft.net/12w36a/minecraft.jar") move()That will download the newest snapshot, backup your old jar, then install the snapshot.
Need your server status on your website? Check out mcapi.us!
@Syfaro
-
View User Profile
-
View Posts
-
Send Message
Retired StaffNeed your server status on your website? Check out mcapi.us!
@Syfaro