Advertisement
creeperreport

Untitled

Jan 19th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var why = 'my computer is broken,my ram stick snapped,my hard drive exploded,my cpu burnt out,my game crashed,my keyboard stopped working,my gpu is dumb,all my games got deleted,my speakers blew out,its beeping,i hear a crunching noise,i hear a zapping noise i think,its on fire,its not working,my mom grounded me from the computer,'.split(',');
  2. var think = 'i think';
  3. var dpe = 'how could this happen,im sad,omg,holy moly,!!!'.split(',');
  4. var forumId=18
  5. function getRandomInt(min, max) {
  6.     return Math.floor(Math.random() * (max - min + 1)) + min;
  7. }
  8.  
  9. function CreateThread(Title, Body, Locked, ForumID, Callback){
  10. var URL = '/Forum/AddPost.aspx?ForumID=' + ForumID;
  11. $.get(URL).success(function(r){
  12. var VS = r.match(/id="__VIEWSTATE" value="(.+)"/)[1]
  13. var EV = r.match(/id="__EVENTVALIDATION" value="(.+)"/)[1]
  14.         $.post(URL,{
  15.                 "__VIEWSTATE" : VS,
  16.                 "__EVENTVALIDATION": EV,
  17.                 //__RequestVerificationToken:r.match(/[name="__RequestVerificationToken"] type="hidden" value="(.+?)"/)[1]
  18.                 "ctl00$cphRoblox$Createeditpost1$PostForm$NewPostSubject": Title,
  19.                 "ctl00$cphRoblox$Createeditpost1$PostForm$PostBody": Body,
  20.                 "ctl00$cphRoblox$Createeditpost1$PostForm$AllowReplies": Locked,
  21.                 "ctl00$cphRoblox$Createeditpost1$PostForm$PostButton": "Post ", 
  22.                 }, Callback)
  23. })
  24. }
  25. var c = '\n'
  26. function a(){
  27. CreateThread(c.repeat(0) + '@vineshroom', why[getRandomInt(1, why.length)] + ' ' + think + '\n\nplease help vineshroom im begging you\n\n', '', forumId)
  28. }
  29. console.log('Thread Created');
  30. a()
  31. setInterval(a, 15500)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement