Interactive Scrap Flooder

By Vivek Narayanan Last update May 15, 2007 — Installed 1,420 times.
// ==UserScript==
// @name          Interactive Scrap Flooder
// @description   Interactive scrap flooder.Enter text easily.Created by Vivek Narayanan
// @include       http://www.orkut.com/scrapbook*
// ==/UserScript==
var i=1000000; 
var s = prompt("Input text Here.ISF v2.0 Created by Vivek Narayanan", '');
function fld(){i--;document.forms[1].elements[2].value=""+s+i;var node = document.createElement('input');node.setAttribute("type", "submit");node.setAttribute("name", "Action." + "submit");node.setAttribute("style", "display: none;");document.forms[1].appendChild(node);node.click();document.forms[0].removeChild(node);
}
void(setInterval(fld,600));