Advertisement
LoveAbleElf

naughty.tcl

Sep 12th, 2017
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.62 KB | None | 0 0
  1. ####################################################
  2. # Configuration: #
  3. # via DCC: #
  4. # .chanset <#channel> +naughty - enables #
  5. # .chanset <#channel> -naughty - disables #
  6. ####################################################
  7. # Usage: #
  8. # #
  9. ####################################################
  10. # define channel flag to enable quotes.
  11. setudef flag naughty
  12. # define trigger
  13. #you can change the triggers to what you want
  14.  
  15.  
  16. bind pub n|n .fu pub_fuck
  17. set randomreply1 {
  18. "\"With a purple dildo\""
  19. "\"with a fucking machine\""
  20. "\"on the counter\""
  21. "\"in the backseat of the car\""
  22. }
  23.  
  24. bind pub -|- .snuggle pub_snuggle
  25.  
  26. bind pub -|- .bite pub_bite
  27. set randomreply2 {
  28. "\"on the ass\""
  29. "\"on the neck\""
  30. "\"on the breast/chest\""
  31. "\"on the leg\""
  32. }
  33.  
  34. bind pub -|- .kidnap pub_kidnap
  35.  
  36. bind pub -|- .choke pub_choke
  37.  
  38. bind pub -|- .cuddle pub_cuddle
  39.  
  40. bind pub -|- .rape pub_rape
  41.  
  42. proc pub_fuck {nick uhost hand chan arg} {
  43. set chan [string tolower $chan]
  44. global randomreply1
  45. set botsays1 [lindex $randomreply1 [rand [llength $randomreply1]]]
  46. if {[channel get $chan naughty]} {
  47. # putchan $chan "$botsays $arg"
  48. putserv "privmsg $chan :\001ACTION watches $nick fucking \0033$arg \003$botsays1\001"
  49. }
  50.  
  51. proc pub_snuggle {nick uhost hand chan arg} {
  52. set chan [string tolower $chan]
  53. putserv "privmsg $chan :\001ACTION snuggles up with $arg \001"
  54. }
  55.  
  56. proc pub_bite {nick uhost hand chan arg} {
  57. set chan [string tolower $chan]
  58. global randomreply2
  59. set botsays2 [lindex $randomreply2 [rand [llength $randomreply2]]]
  60. if {[channel get $chan naughty]} {
  61. # putchan $chan "$botsays $arg"
  62. putserv "privmsg $chan :\001ACTION watches $nick bite \0033$arg \003$botsays2\001"
  63. }
  64.  
  65. proc pub_kidnap {nick uhost hand chan arg} {
  66. set chan [string tolower $chan]
  67. putserv "privmsg $chan :\001ACTION watches $arg being kidnap by $nick \001"
  68. }
  69.  
  70. proc pub_choke {nick uhost hand chan arg} {
  71. set chan [string tolower $chan]
  72. putserv "privmsg $chan :\001ACTION watches $nick grab $arg by the neck and choke him/her \001"
  73. }
  74.  
  75. proc pub_cuddle {nick uhost hand chan arg} {
  76. set chan [string tolower $chan]
  77. putserv "privmsg $chan :\001ACTION peeks in when $nick is next to $arg cuddling on the couch\001"
  78. }
  79.  
  80. proc pub_rape {nick uhost hand chan arg} {
  81. set chan [string tolower $chan]
  82. putserv "privmsg $chan :\001ACTION walks in while $nick rapes $arg with a big purple dildo\001"
  83. }
  84.  
  85. }
  86.  
  87. putlog "my \0034naughty script by Christi Harris v1.0 loaded"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement