Advertisement
DudeWithFood

Official Bot (officially official)

Jul 5th, 2015
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var ThreadId = prompt("What thread Id would you like to bump?")
  2. var BumpTimes = prompt("How many times would you like to bump this thread?")
  3. //
  4. var OnBump = 0
  5. var Link = "http://forum.roblox.com/Forum/AddPost.aspx?mode=flat&PostID=" + ThreadId
  6. function Post(){
  7.     $.get(Link,function(Data){
  8.         var VS = Data.match(/id="__VIEWSTATE" value="(.+)"/)[1]
  9.         var EV = Data.match(/id="__EVENTVALIDATION" value="(.+)"/)[1]
  10.         $.post(Link,{
  11.             "__VIEWSTATE" : VS,
  12.             "__EVENTVALIDATION" : EV,
  13.             "ctl00$cphRoblox$Createeditpost1$PostForm$PostSubject" : "Re: -",
  14.             "ctl00$cphRoblox$Createeditpost1$PostForm$PostBody" : OnBump,
  15.             "ctl00$cphRoblox$Createeditpost1$PostForm$PostButton" : "Post"
  16.         })
  17.     })
  18. }
  19. Post()
  20. var Interval = setInterval(function(){
  21.     if (OnBump == BumpTimes){
  22.         clearInterval(Interval)
  23.     }
  24.     Post()
  25.     OnBump++
  26. },40000)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement