aliens

Author Topic: Any way to edit monthly score in the save files?  (Read 3543 times)

Offline Taberone

  • Captain
  • ***
  • Posts: 90
    • View Profile
Any way to edit monthly score in the save files?
« on: August 09, 2014, 08:27:50 pm »
I had two bad months in a row and the council is about to terminate X-COM...Right before we can finish the Avenger. Is there a way to edit monthly score? My game is about to end right before we go to Mars.... Also, I was doing very well in the beginning, then the game started spamming terror missions and Alien Bases.

Offline Falko

  • Commander
  • *****
  • Posts: 802
    • View Profile
Re: Any way to edit monthly score in the save files?
« Reply #1 on: August 09, 2014, 08:29:45 pm »
yes there is a way
Code: [Select]
countries:
  - type: STR_USA
    activityXcom:
      - 0
      - 100
      - 2674
      - 1014
      - 0
    activityAlien:
      - 0
      - 7
      - 39
      - 32
      - 0
...
regions:
  - type: STR_NORTH_AMERICA
    activityAlien:
      - 0
      - 9
      - 93
      - 240
      - 5
    activityXcom:
      - 0
      - 100
      - 3312
      - 2523
      - 0
« Last Edit: August 09, 2014, 08:34:13 pm by Falko »

Offline Taberone

  • Captain
  • ***
  • Posts: 90
    • View Profile
Re: Any way to edit monthly score in the save files?
« Reply #2 on: August 09, 2014, 08:46:00 pm »
Where?

Offline kkmic

  • Commander
  • *****
  • Posts: 582
  • Undefined
    • View Profile
Re: Any way to edit monthly score in the save files?
« Reply #3 on: August 11, 2014, 03:22:57 pm »
I don't know the internals of all this, but I suppose that zeroing all the values for the aliens will do the trick.

Something like this:
Code: [Select]
countries:
  - type: STR_USA
    activityXcom:
      - 0
      - 100
      - 2674
      - 1014
      - 0
    activityAlien:
      - 0
      - 0
      - 0
      - 0
      - 0
...
regions:
  - type: STR_NORTH_AMERICA
    activityAlien:
      - 0
      - 9
      - 0
      - 0
      - 0
    activityXcom:
      - 0
      - 100
      - 3312
      - 2523
      - 0

Backup your save file, just in case...