
BLOC is kill.
By: a guest on
Jan 20th, 2014 | syntax:
Python | size: 0.41 KB | hits: 69 | expires: Never
import mechanize
br = mechanize.Browser()
i = 1
while True:
loginresponse = br.open('http://blocgame.com/register.php')
br.form = list(br.forms())[1]
br["username"] = 'heidi%s' % i
br["nationname"] = 'heidiland%s' % i
br.form['region'] = ["Asia"]
br.form['government'] = ["1"]
br.form['economy'] = ["10"]
br.submit()
i += 1