Advertisement
Gmodmoney2

Untitled

Jun 1st, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. window.alert('*USE AN ALT ACCOUNT TO AVOID GETTING A BAN*\n\nWE <3 HEROSWINE')
  2. var ThreadId = prompt("What thread Id would you like to bump?\n\nYOU LOVE HEROSWINE")
  3. var BumpTimes = prompt("How many times would you like to bump this thread?\n\nYOU LOVE HEROSWINE")
  4. var Delay = prompt("How long in seconds do you want to delay your posts?\n\n*Use 300-600 (5-10 minutes) to avoid getting banned*\n\nYOU LOVE HEROSWINE")
  5. //
  6. var OnBump = 1
  7. var Link = "http://forum.roblox.com/Forum/AddPost.aspx?mode=flat&PostID=" + ThreadId
  8. var TradeLink
  9. function Post(){
  10. $.get(Link,function(Data){
  11. var VS = Data.match(/id="__VIEWSTATE" value="(.+)"/)[1]
  12. var EV = Data.match(/id="__EVENTVALIDATION" value="(.+)"/)[1]
  13. $.post(Link,{
  14. "__VIEWSTATE" : VS,
  15. "__EVENTVALIDATION" : EV,
  16. "ctl00$cphRoblox$Createeditpost1$PostForm$PostBody" : OnBump,
  17. "ctl00$cphRoblox$Createeditpost1$PostForm$PostButton" : "Post"
  18. })
  19. })
  20. }
  21. Post()
  22. var Interval = setInterval(function(){
  23. if (OnBump == BumpTimes){
  24. clearInterval(Interval)
  25. }
  26. Post()
  27. OnBump++
  28. },Delay * 1000)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement