Code: Select all
######################################################
#coded by monie @ moniestcl.awardspace.com #
#server :Friendcodes irc.friendcodes.info #
#Channels #NintendoXG,#Ircsupport,#eggdrop|windrop #
#simple 8ball script 1.0 #
#for more of my scripts check out my site #
######################################################
bind pub -|- !8ball pub:8ball
proc pub:8ball {nick hand channel args } {
global reply
putquick "PRIVMSG $channel :[lindex $reply [rand [llength $reply]]]"
}
#sets the response for the 8ball answer
set reply {
"\"Try asking when you get smater.\""
"\"Absolutely yes!\""
"\"Answer hazy."
"\"Prospect looks bleak.\""
"\"No."
"\"That's a question you should ask yourself.\""
"\"Prospect looks hopeful.\""
"\"I like to think so.\""
"\"Not even on a GOOD day.\""
"\"It would take a disturbed person to even ask.\""
"\"Maybe -- give me more money and ask again.\""
"\"Yes, yes, yes, and yes again.\""
"\"You wish.\""
"\"Not bloody likely.\""
"\"I'm busy.\""
"\"Concentrate and ask again.\""
"\"Most likely.\""
"\"I wouldn't know anything about that.\""
"\"No way.\""
"\"All signs point to yes.\""
"\"Never.\""
"\":\""
}
putlog "simple 8ball script 1.0 by monie loaded..."