Bon c'est pas compliqué.
DL Python 2.6
Lancer le idle
copier coller ça : import urllib.request
base_url =
'http://dist.blizzard.com.edgesuite.net/sc2patch/p
atches/B15073B'
def download(fname, parts):
out = open(fname, 'wb')
for p in xrange(0, parts+1):
print "Downloading %s part %s @ %s%%" % (fname, p, round(float(p)/parts*100,2))
remote = urllib2.urlopen("%s/%s/%s" % (base_url, fname, p))
for l in remote:
out.write(l)
#out.write(remote.read())
out.close()
- download('sc2-0.10.0.14803-0.11.0.15073-x86-Win-e
nUS-bnet-bin', 128)
- download('sc2-0.10.0.14803-0.11.0.15073-x86-Win-e
nUS-bnet-base', 128)
download('sc2-0.10.0.14803-0.11.0.15073-x86-Win-en
US-locale', 128)
download('sc2-0.10.0.14803-0.11.0.15073-x86-Win-en
US-game', 1718)
- now take each file, one at a time and place it in the Support folder within your install
- directory. Rename it to sc2-patch.mpq, and run Blizzard Updater.exe. Repeat for each file.
Entré.