set port number to 8328
This commit is contained in:
6
vckonline.py
Normal file → Executable file
6
vckonline.py
Normal file → Executable file
@@ -1,4 +1,5 @@
|
||||
from basegame import *
|
||||
from server import *
|
||||
|
||||
print("Welcome to Valeria Card Kingdoms: Online")
|
||||
playerCount = 2 #int(input("How many players? (2-5):\n"))
|
||||
@@ -8,11 +9,6 @@ gameBoard = Board(playerCount, citizenSet)
|
||||
#have players select dukes
|
||||
for player in gameBoard.playerList:
|
||||
player.display()
|
||||
for duke in player.ownedDukes:
|
||||
duke.display()
|
||||
dukeChoice = 2#int(input("Enter Duke number:\n"))
|
||||
player.duke = player.ownedDukes[dukeChoice - 1]
|
||||
#player.duke.display()
|
||||
#gameBoard.display()
|
||||
#while not gameBoard.end_check():
|
||||
gameBoard.play_turn()
|
||||
|
||||
Reference in New Issue
Block a user