OK, here's the situation. I put this in my CvEventManager.py file at the bottom. The minute I do, none of my python works. All the XML references exist, I've checked that - what objection does my game have to this code?
Can anyone help?
Code:
# Units
iBritInf = gc.getInfoTypeForString("UNIT_BRITINF")
iSAS = gc.getInfoTypeForString("UNIT_SAS")
iAAC = gc.getInfoTypeForString("UNIT_AAC")
iBritArmour = gc.getInfoTypeForString("UNIT_SCIMITAR")
## Civs
iBritish = gc.getInfoTypeForString("CIVILIZATION_ENGLAND")
iArgentina = gc.getInfoTypeForString("CIVILIZATION_ARGENTINA")
## Cities
tStanley = (106, 38)
tTeal = (99, 45)
tPortHoward = (59, 44)
tGooseGreen = (71, 34)
tFitzroy = (92, 33)
tPebbleIsland = (53, 58)
## Objectives
tObjectivesList = [ tStanley
tTeal,
tFitzroy,
tGooseGreen,
tPortHoward]
Can anyone help?