Advertisement
WacKEDmaN

Untitled

Dec 20th, 2018
1,812
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 2.60 KB | None | 0 0
  1. # Bad Boy Bubby Quotes by WacKEDmaN
  2. #
  3. # Quotes random Bad Boy Bubby quotes.
  4. #
  5. # Much of this script was stolen from the Discworld quotes script, which
  6. # you can get off the bseen tcl site. google it. Thanks to Dibbler for that.
  7. #
  8. #
  9. # Public, message, and dcc command to display quotes is !bbb
  10. # or just change the !bbb below to whatever you want, .bbb, -bbb,
  11. # whatever.
  12. #
  13.  
  14. ## public command. ##
  15. bind pub - !bbb pub_bbb
  16.  
  17. ## message command. ##
  18. bind msg - !bbb msg_bbb
  19.  
  20. ## dcc command. ##
  21. bind dcc - bbb dcc_bbb
  22.  
  23. ## start meat & potatoes of script. ##
  24. proc pub_bbb { nick mask hand channel args } {
  25.     global bbbquotes
  26.     putquick "PRIVMSG $channel :[lindex $bbbquotes [rand [llength $bbbquotes]]]"
  27. }
  28.  
  29. proc msg_bbb { nick uhost hand rest } {
  30.     global bbbquotes
  31.     putquick "NOTICE $nick :[lindex $bbbquotes [rand [llength $bbbquotes]]]"
  32. }
  33.  
  34. proc dcc_bbb { hand idx rest } {
  35.         global bbbquotes
  36.         putidx $idx "[lindex $bbbquotes [rand [llength $bbbquotes]]]"
  37. }
  38.  
  39.  
  40. set bbbquotes {
  41.  
  42. "Jesus can see everything I do... and he's going to beat me brainless!"
  43.  
  44. "Christ, kid, you're a weirdo"
  45.  
  46. "And if the poison doens't get you... God will. "
  47.  
  48. "Me be pop now."
  49.  
  50. "Pop get pizza for cat!"
  51.  
  52. "Bubby being left to die... me Pop now!"
  53.  
  54. "You're a sexy woman. God, you've got great tits. Great big whoppers, if you can say."
  55.  
  56. "You still look good, Flo. You always were a good looking broad."
  57.  
  58. "Hey son, you can call me pop. I'm your pop"
  59.  
  60. "Yeah yeah alright. Don't go making a big thing of it."
  61.  
  62. "Hey what's up son, you got a mental condition or something?"
  63.  
  64. "You're a fuckin' weird looking rooster aren't ya? C'mon get out the way, I gotta chop this tree down....... come on, come on or I'll chop your prick off..... "
  65.  
  66. "Here's your bed, and there's your suitcase, and I've put your cat in the freezer, and we can bury that tomorrow, ok?"
  67.  
  68. "How come... cat no gas mask? Don't need one... cats don't breathe"
  69.  
  70. "You be sexy woman, Flo"
  71.  
  72. "Come on, cat. Pizza!"
  73.  
  74. "Be still ya litte cunt! I'll beat ya brainless!"
  75.  
  76. "God be a useless cunt!"
  77.  
  78. "Christ, I'll beat you brainless."
  79.  
  80. "That be Cat!"
  81.  
  82. "Fuck you, God! Strike me down if you dare! Angel be beautiful. God be a useless cunt!"
  83.  
  84. "Get off of the fuckin' road you greasy bastard! Get off of the fuckin' road you greasy bastard! Get off... "
  85.  
  86. "Pizza be better than this!"
  87.  
  88. "Well, if that's all there is... we're stuffed"
  89.  
  90. "Ain't got money to keep buying you milk, you greedy little cunt."
  91.  
  92. "Fuck you, God! Strike me down if you dare, you tyrant, you non-existent fraud!"
  93.  
  94.  
  95.  
  96.  
  97. }
  98.  
  99. putlog "Bad Boy Bubby quotes 0.9 by WacKEDmaN loaded."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement