Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # nug 0.9 by WacKEDmaN
- #
- # Quotes random dan is lame quotes.
- #
- # Much of this script was stolen from the Discworld quotes script, which
- # you can get off the bseen tcl site. google it. Thanks to Dibbler for that.
- #
- #
- # Public, message, and dcc command to display lyrics is !daniel_j
- # or just change the !daniel_j below to whatever you want, .daniel_j, -daniel_j,
- # whatever.
- #
- ## public command. ##
- bind pub - !shrug pub_shrug
- bind pub - !flip pub_flip
- ## start meat & potatoes of script. ##
- proc pub_ahrug{ nick mask hand channel args } {
- global shrug
- putquick "PRIVMSG $channel :[lindex $shrug [rand [llength $shrug]]]"
- }
- proc pub_flip{ nick mask hand channel args } {
- global flip
- putquick "PRIVMSG $channel :[lindex $flip [rand [llength $flip]]]"
- }
- set shrug {
- "¯\_(ツ)_/¯"
- }
- set flip {
- "(╯°□°)╯︵ ┻━┻"
- "(ノಠ益ಠ)ノ彡┻━┻"
- "┬─┬ノ( º _ ºノ)"
- "┻━┻ ︵ ¯\(ツ)/¯ ︵ ┻━┻"
- "┬──┬ ¯\_(ツ)"
- }
- putlog "nug.tcl is lame by WacKEDmaN loaded."
Add Comment
Please, Sign In to add comment