There's a few bugs I've found in the Greek World Python Script (Feb Patch)
These are fixable by the users, but I figure people from Firaxis would more likely visit this forum than the creation one.
[convert underscores to one level of indention; appolyton kills white space used as indention]
This segment
self.flipCity(2, tMarseilles, 1, 1, iCelts, [iEtruria])
if (pRome.isHuman() == 0):
_self.flipCity(3, tMilano, 1, 1, iCelts, [iEtruria])
_self.flipCity(5, tAleppo, 1, 1, iBabylon, [iPhoenicia, iIsrael, 18])
should be
if (pRome.isHuman() == 0):
_self.flipCity(2, tMarseilles, 1, 1, iCelts, [iGreekCol])
_self.flipCity(3, tMilano, 1, 1, iCelts, [iEtruria])
self.flipCity(5, tAleppo, 1, 1, iBabylon, [iPhoenicia, iIsrael, 18])
1)Marseilles is near Rome; not Aleppo.
2)In addition, Marseills starts under ownership of Greek Col, not Etruria.
3)
if (self.getJerusalemFate() >= 40): # LOQ 2005-10-12
_self.flipCity(50, tYerushalayim, 1, 1, iBabylon, [iIsrael])
...
self.flipCity(11, tPetra, 1, 1, iBabylon, [iIsrael])
should be
if (self.getJerusalemFate() >= 40): # LOQ 2005-10-12
_self.flipCity(5, tYerushalayim, 1, 1, iBabylon, [iIsrael])
...
self.flipCity(5, tPetra, 1, 1, iBabylon, [iIsrael])
Israel fell in 586 BC to the Babs. (Closest to turn 5 based on other Bab events.)
In fact, on the script turn 12 is when the Babs are due to be wiped out by the Persians [when Persia is AI controlled]
Also, this Python file has both tabs and spaces in it
This breaks the 1st commendment of any language that uses indentation to define blocks of code, "Thou shalt not mix spaces and tabs in the same file lest fatal bugs be multipled unto thee."
These are fixable by the users, but I figure people from Firaxis would more likely visit this forum than the creation one.
[convert underscores to one level of indention; appolyton kills white space used as indention]
This segment
self.flipCity(2, tMarseilles, 1, 1, iCelts, [iEtruria])
if (pRome.isHuman() == 0):
_self.flipCity(3, tMilano, 1, 1, iCelts, [iEtruria])
_self.flipCity(5, tAleppo, 1, 1, iBabylon, [iPhoenicia, iIsrael, 18])
should be
if (pRome.isHuman() == 0):
_self.flipCity(2, tMarseilles, 1, 1, iCelts, [iGreekCol])
_self.flipCity(3, tMilano, 1, 1, iCelts, [iEtruria])
self.flipCity(5, tAleppo, 1, 1, iBabylon, [iPhoenicia, iIsrael, 18])
1)Marseilles is near Rome; not Aleppo.
2)In addition, Marseills starts under ownership of Greek Col, not Etruria.
3)
if (self.getJerusalemFate() >= 40): # LOQ 2005-10-12
_self.flipCity(50, tYerushalayim, 1, 1, iBabylon, [iIsrael])
...
self.flipCity(11, tPetra, 1, 1, iBabylon, [iIsrael])
should be
if (self.getJerusalemFate() >= 40): # LOQ 2005-10-12
_self.flipCity(5, tYerushalayim, 1, 1, iBabylon, [iIsrael])
...
self.flipCity(5, tPetra, 1, 1, iBabylon, [iIsrael])
Israel fell in 586 BC to the Babs. (Closest to turn 5 based on other Bab events.)
In fact, on the script turn 12 is when the Babs are due to be wiped out by the Persians [when Persia is AI controlled]
Also, this Python file has both tabs and spaces in it
This breaks the 1st commendment of any language that uses indentation to define blocks of code, "Thou shalt not mix spaces and tabs in the same file lest fatal bugs be multipled unto thee."
Comment