Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.97 KB | None | 0 0
  1.  
  2. (function() {
  3. var quotes = [
  4. {
  5. text: "Taco Bell Quesarito hype train."
  6. },
  7. {
  8. text: "Support the mother fuCKIN COMMUNITEH! - Toxin 2009"
  9. },
  10. {
  11. text: "Accepting donations to support Labarr's soccer dreams."
  12. },
  13. {
  14. text: "Welcome. -SG Welcome Committee"
  15. },
  16. {
  17. text: "Accepting donations to support Labarr's soccer dreams."
  18. },
  19. {
  20. text: "Support the community for more photos of women in the chatbox."
  21. },
  22. {
  23. text: "Canadians donate less to SG than Europeans. Fact. Try to prove me wrong."
  24. },
  25. {
  26. text: "Excess donations go towards SG get-together so everyone can clumsily stand about and stare at their feet...But with their fellow SteamGamers!"
  27. },
  28. {
  29. text: "No, these messages aren't changing randomly. I'm just really, really bored."
  30. },
  31. {
  32. text: "Donate to support Spartan's vacation to America. We're sending him to Detroit."
  33. },
  34. {
  35. text: "meow"
  36. },
  37. {
  38. text: "Excess donations go to support Ronnie Swoleman's gym fees."
  39. },
  40. {
  41. text: "Hello there, you're cute. ;D"
  42. },
  43. {
  44. text: "SteamGamers get-together will be located at Caution's house. He's making us brownies. Donate to make it happen...Donate for the brownies."
  45. },
  46. {
  47. text: "Donating to SG is exactly how we afford our own mascot. Donate today so SG can hire someone to run around dressed as a Sloth."
  48. },
  49. {
  50. text: "I pay for my own gas, now give me admin - Goku"
  51. },
  52. {
  53. text: "Dirkjr: thin piece of cloth does it astrum"
  54. },
  55. {
  56. text: "For myself I am an optimist — it does not seem to be much use being anything else. - Winston Churchill"
  57. },
  58. {
  59. text: "Request a donation quote today! http://www.steam-gamers.net/forum/misc.php?do=form&fid=51"
  60. },
  61. {
  62. text: "If only I had checked myself - guy who wrecked himself"
  63. },
  64. {
  65. text: "I'm a fat motherfucker -Spiked"
  66. },
  67. {
  68. text: "If you fall, I'll be there -Floor"
  69. },
  70. {
  71. text: "That's what -She"
  72. },
  73. {
  74. text: "'What are you going to do now that your TV is broken, Ahoy?' 'im going to fight it'"
  75. },
  76. {
  77. text: "Donate today! YOU FORKED TONGUED SCALLYWAGON!"
  78. },
  79. {
  80. text: "Based God XeNo: Creator of the Donation Quotes."
  81. },
  82. {
  83. text: "Sittin on a long day-sippin on some bombay, pour one for harambe."
  84. }
  85. ];
  86. var quote = quotes[Math.floor(Math.random() * quotes.length)];
  87. document.getElementById("quote").innerHTML =
  88. '<p>' + quote.text + '</p>';
  89. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement