About This File
Poker Game Script
# ------------------------------------------------------------------------ # Name: drpoker.tcl # Title: Doctor Po's Draw Poker # Date: Sat Aug 16 15:00 2003 # Author: Greg McNeil <gmcneil@yahoo.com> # Purpose: Deals a game of 5 Card Draw Poker to as many as five # players. Cards are dealt face up from a regular shuffled # deck (plus two wild cards). Players then discard and # draw cards. Game ends when bot shows final hands. # The game can operate independently on multiple channels. # Notes: Designed for Eggdrop 1.6, Tcl 8.4, and Undernet. # ------------------------------------------------------------------------ # Doctor Po's Draw Poker, a Tcl script for Eggdrop bots. The bot # deals hands of 5 card draw poker to players on IRC channels. # Copyright (C) 2003 Greg McNeil # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # If you did not receive a copy of the GNU General Public License # along with this program, obtain a copy by writing to the Free # Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # ------------------------------------------------------------------------