Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var doc = document;
- var forums = "http://forum.roblox.com/Forum/ShowForum.aspx?ForumID=";
- var board = 18;
- var floodcheck = 30000;
- var reply = "http://forum.roblox.com/Forum/AddPost.aspx?PostID=";
- var frame = document.createElement('iframe');
- var threadview = "ctl00_cphRoblox_ThreadView1_ctl00_ThreadList";
- var body = "ctl00_cphRoblox_Createeditpost1_PostForm_PostBody";
- var postbutton = "ctl00_cphRoblox_Createeditpost1_PostForm_PostButton";
- var keywords = new Array("OP, that is a great idea","sure, if you pay me","I'm not a bot people!","I like the way you think OP"," Wow man, that's racist","I only agree slightly, there is a few flaws","OP is my favorite OT'er","Your so nice","That wasn't funny","Somehow your post offends me","Stop saying I'm a bot!","My IQ is no match for you","sup OP","Your character looks nice!","Have a good day!","OP going HAM","Thanks for your cooperation, I knew we could work something out","OP remember an IQ is just a number"," hello!!!","I think that was the wrong one","I got one question for ya, WHAT ARE THOSSSE!","OP this is quite flattering that you could post like that","If you have questions, comments, or concerns OP, dial 1","If your reading this sentence, then that means my friend left a bot on","hola","That is so last century","cool!","the video was age restricted that's why","Thats it, im done!","https://www.youtube.com/watch?v=v5hej6bd9v4","amazing!","not quite sure, try the other one"," If your trying to have a conversation with me don't as i am simply not human","a human didnt write this post","+1 post count","yes","meh","nope","your giving me such a hard time right now","Thanks,but...","I like your style","Im speechless","b8 m8","quality post","lol nice try though","you did good OP","https://www.youtube.com/watch?v=RMtKoSA9sNA","https://www.youtube.com/watch?v=-dY77j6uBHI"," ");
- var keywords2 = new Array(" "," "," "," "," "," ");
- var added = String.fromCharCode(1) + " "+ String.fromCharCode(1);
- var subject = "ctl00_cphRoblox_Createeditpost1_PostForm_PostSubject";
- var posts = 0;
- function Add(str){
- keywords.push(str);
- }
- function FindPost(){
- var doc = frame.contentDocument;
- var threds = doc.getElementById(threadview).firstElementChild;
- var post = threds.children[Math.floor(Math.random()*20)+5];
- var postlink = post.children[1].firstElementChild;
- var postid = postlink.href.substring(postlink.href.indexOf("=")+1);
- return postid;
- }
- function load() {
- var loc = frame.contentWindow.location;
- var url = loc.hostname+loc.pathname;
- if (loc.href == forums + board) {
- var postid = FindPost();
- frame.contentWindow.location = reply+postid;
- } else if(url == "forum.roblox.com/Forum/AddPost.aspx"){
- frame.contentDocument.getElementById(subject).value = "RE: ";
- frame.contentDocument.getElementById(body).value = keywords[Math.floor(Math.random()*keywords.length)]+keywords2[Math.floor(Math.random()*keywords2.length)]+keywords2[Math.floor(Math.random()*keywords2.length)]+keywords2[Math.floor(Math.random()*keywords2.length)]+added;
- frame.contentDocument.getElementById(postbutton).click();
- posts++;
- document.title = posts+" posts";
- } else {
- setTimeout("frame.contentWindow.location = forums+board;",floodcheck);
- }
- }
- frame.onload = load;
- frame.src = forums+board;
- frame.height = 600;
- frame.width = 900;
- frame.style.position = "absolute";
- frame.sandbox = "allow-same-origin allow-scripts allow-forms";
- document.body.innerHTML = "";
- document.body.appendChild(frame);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement