Advertisement
Guest User

ХРЮ 2.0

a guest
Jul 1st, 2015
445
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. hryu = function () {
  2. var arr1 = [ "Олька", "Савушка", "Залупка", "Русня", "Пидорашка", "Манька", "Подзалупка" ];
  3. var arr2 = [ " как обычно обосралась.", " порвалась.", " перешла на визг.", " не хочет признавать обосрамс.", " начала маневрировать.", ", тебе неприятно?", ", почему у тебя так бомбит?", ", не переходи на визг.", ", иди тушись.", ", чего ты так рвёшься?", ", прекращай бомбить.", ", зачем ты ссышь на себя?" ];
  4. var arr3 = [ " Ох лол.", " Алсо #Володин #Пидор", " Давай зашивайся.", " А ну хрюкни.", " Ебать вы убогие.", " Короче +15", " Посмотри Киселя, полегчает.", " Ололо.", " Иди подмойся.", " Смени методичку." ];
  5.  
  6. return arr1[ Math.floor(Math.random() * arr1.length) ] +
  7. arr2[ Math.floor(Math.random() * arr2.length) ] +
  8. arr3[ Math.floor(Math.random() * arr3.length) ] + " ";
  9. }
  10.  
  11. var hryuButton = document.createElement('div');
  12. document.body.appendChild(hryuButton);
  13. hryuButton.innerHTML = "<b>ХРЮ</b>";
  14. hryuButton.style['position'] = "fixed";
  15. hryuButton.style['top'] = "3px";
  16. hryuButton.style['right'] = "3px";
  17. hryuButton.style['border'] = "1px solid #CCC";
  18. hryuButton.style['cursor'] = "pointer";
  19. hryuButton.style['padding'] = "3px";
  20. hryuButton.onclick = function() {
  21. var hryuhryu = hryu();
  22. document.getElementById("shampoo").value += hryuhryu;
  23. document.getElementById("qr-shampoo").value += hryuhryu;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement