How to change difficulty level of current game?

Hussarknight

Warlord
Joined
Oct 20, 2016
Messages
139
Would like to increase difficulty of my current India from Monarch to Emperor. How does one do this in an existing game?
 
Open the Python console (shift and ~), then type:
Code:
from Consts import *
for iPlayer in range(iNumPlayers): gc.getPlayer(iPlayer).setHandicapType(4)
Or any other number for other difficulties.
 
Open the Python console (shift and ~), then type:
Code:
from Consts import *
for iPlayer in range(iNumPlayers): gc.getPlayer(iPlayer).setHandicapType(4)
Or any other number for other difficulties.

Nothing happens when I do that. Also, how do I remove the stability hit from razing enemy cities?
 
What do you expect to happen?
 
A chat log to appear or at least something which notifies me that it is enabled. Please tell me how to turn off the raze cities stability hit.
 
There is no such text feedback. Unless you see an error it has been successful.

For the raze penalty, you cannot disable it without editing the stability code.
 
Guess I'll just keep using the Worldbuilder then to remove cities and to not receive the stability hit
 
Open the Python console (shift and ~), then type:
Code:
from Consts import *
for iPlayer in range(iNumPlayers): gc.getPlayer(iPlayer).setHandicapType(4)
Or any other number for other difficulties.

Is there any way to know that I made a typo or not?
 
Exactly. Deliberately make a typo and you'll see the Python interpreter complain.
 
I don't know, this doesn't happen to me.
 
Top Bottom