Pastebin launched a little side project called HostCabi.net, check it out ;-)Don't like ads? PRO users don't see any ads ;-)
Guest

BLOC is kill.

By: a guest on Jan 20th, 2014  |  syntax: Python  |  size: 0.41 KB  |  hits: 69  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. import mechanize
  2. br = mechanize.Browser()
  3. i = 1
  4. while True:
  5.     loginresponse = br.open('http://blocgame.com/register.php')
  6.     br.form = list(br.forms())[1]
  7.     br["username"] = 'heidi%s' % i
  8.     br["email"] = 'heidi%[email protected]' % i
  9.     br["nationname"] = 'heidiland%s' % i
  10.     br.form['region'] = ["Asia"]
  11.     br.form['government'] = ["1"]
  12.     br.form['economy'] = ["10"]
  13.     br.submit()
  14.     i += 1