Alrik2002
Warlord
Hi,
I´ve an error messages which I can´t erase.
It only shows up at the beginning of the first game I start when I´ve just loaded the game. When I go back to the Main Menu and start a new game, it doesn´t show up again.
It refers to line 4 of the following code
Perhaps someone can give me a hint where the problem could be, since I´m really clueless.
Thank you very much.
I´ve an error messages which I can´t erase.
It only shows up at the beginning of the first game I start when I´ve just loaded the game. When I go back to the Main Menu and start a new game, it doesn´t show up again.
It refers to line 4 of the following code
Code:
## Sid Meier's Civilization 4
## Copyright Firaxis Games 2005
##
## Implementaion of miscellaneous game functions
import CvUtil
from CvPythonExtensions import *
import CvEventInterface
import PyHelpers
import Immigration
# for C++ compatibility
false=False
true=True
# globals
gc = CyGlobalContext()
PyPlayer = PyHelpers.PyPlayer
PyInfo = PyHelpers.PyInfo
PyCity = PyHelpers.PyCity
PyGame = PyHelpers.PyGame
class AlriksMultiModGameUtils:
"Miscellaneous game functions"
def __init__(self):
pass
def isVictoryTest(self):
if ( gc.getGame().getElapsedGameTurns() > 10 ):
return True
else:
return False
Perhaps someone can give me a hint where the problem could be, since I´m really clueless.

Thank you very much.