About This File
Black Scrabble IRC Game Script
#################################################################### # # Black Scrabble 1.2.1 TCL - en version # #A game in which you are given letters and you have to make words with them # #Commands : # #!scrabble <on> / <off> - enable / disable Scrabble #!scrabble - start game #!scrabble stop - stop jocul #!scrabble reset - reset top #!top <general> / <round> - vizualizezi topurile. #!won <user> - view user statistics. #!game - show the current letters from which you will form words. # #INSTALL : # #Put Scrabble.db and the BlackScrabble.tcl file in scripts #Add in config source scripts/BlackScrabble.tcl # # have Fun # # BLackShaDoW ProductionS # Translate by Nik WwW.TclScripts.Net #################################################################### #Set here which flags can enable / disable / reset Scrabble set scrabble(flags) "mn|mM" #Here you set after how many rounds in which there is no activity #to stop the automatic game? set scrabble(end_rounds) "5" #After how many correct answers the eggdrop to show again the letters ? set scrabble(correct_answers_show) "3" #Random round for double points #(will choose a random round from the maximum set below) set scrabble(double_points_round) "5" ### #Select mask to use for users #1 - *!*@$host #2 - *!$ident@$host #3 - $user!$ident@$host #4 - $user!*@* #5 - *!$ident@* set scrabble(userhost) "1" ##################################################################### # # The End is Near :) # #####################################################################