[BTS] How to remove civilization contact?

Jayman1000

Prince
Joined
May 6, 2006
Messages
319
I hope this is posted in the correct subforum, I apologize if it is not. I tried the ingame world builder and under diplomacy there are checkboxes for contact to each civilization leader. Unfortunately it's only possible to add a checkmark in the box for contact, not remove it. I'd like to remove the contact also. Is that somehow possible, either through the world builder or through editing save game files?

Hope someone can help, thanks in advance for any help!
 
PlatyBuilder might be able to, but I've never used it; pure speculation. According to Assets\Python\CvWBDesc.py, has-met info gets stored as
ContactWithTeam=
in WB saves:
Code:
# write met other teams
for i in range(gc.getMAX_CIV_TEAMS()):
   if (gc.getTeam(idx).isHasMet(i)):
       f.write("\tContactWithTeam=%d\n" %(i))
 
Top Bottom