robixxu

[Script] Ask.fm Spam

Apr 15th, 2014
919
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. document.write("Don't forget to Subscribe & Like...");
  2. document.write("If you want to use only one message instead of messages[tmp] put robiXxu['msg'] ");
  3. document.write("If you want to add more than 4 messages ....just copy paste, increment the index and the max value for random");
  4.  
  5.  
  6. var robiXxu     =   new Array();
  7. var messages    =   new Array();
  8. messages[1]     =   "U mad bro?";
  9. messages[2]     =   "You have so much Swag (Secretly we are gay!)";
  10. messages[3]     =   "Hello Homo Cocalarus >:)";
  11. messages[4]     =   "I stuck my dick in this game like a rapist...";
  12.  
  13. function sendMessage(){
  14.     robiXxu['msg']      =   'robiXxu made me >:)';
  15.     robiXxu['msgbox']   =   document.getElementsByName('question[question_text]')[0];
  16.     robiXxu['submit']   =   document.getElementById('question_submit');
  17.     var tmp             =   Math.floor((Math.random()*4)+1);
  18.  
  19.     setTimeout(function(){
  20.         robiXxu['msgbox'].value =   messages[tmp];
  21.     },100);
  22.     if(robiXxu['msgbox'].value!=""){
  23.         robiXxu['submit'].click();
  24.         setTimeout(function(){
  25.             Profile.showQuestionForm();
  26.         },1000);
  27.     }else{ setTimeout("sendMessage()",1);}
  28. }
  29.  
  30.  
  31. setInterval("sendMessage()",3000);
Advertisement
Add Comment
Please, Sign In to add comment