Python Forum
Yahtzee poker game. Python3 - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Game Development (https://python-forum.io/forum-11.html)
+--- Thread: Yahtzee poker game. Python3 (/thread-14544.html)



Yahtzee poker game. Python3 - Newby - Dec-05-2018

Hi there. I am new in Python. A friend of mine offered me a challenge. SO am in.
Yahtzee is a poker game, but u also use 5 bones in it. Each member of game makes turn one and turn two, lets start with turn one.

In first turn i make a throw of 5 bones, and i have to highlight the repeated values.
Example - i make throw of 5 bones and i have 1,1,3,4,6.
I have to highlight 1,1. So in my turn i have 1,1.
Can u please help me to make it using python?
Thx


RE: Yahtzee poker game. Python3 - micseydel - Dec-05-2018

Are you using Pygame, or are you trying to make a command line game, or something else? What do you have so far?


RE: Yahtzee poker game. Python3 - Newby - Dec-06-2018

I ma using Python3. Whats pygame?
Im trying to make command line.
I made bone class, 6 sides.
I made class Glass where i have 5 bones.
I made class Yahtzee(name of the game).
So i need to make first turn. To throw 5 bones from glass and choose for repeated values.
Thx for reply.


RE: Yahtzee poker game. Python3 - ichabod801 - Dec-06-2018

Show your code (in Python tags, see the BBCode link in my signature, below). We can't help you without seeing what you have done.