aliens

Author Topic: Bugs, crashes, typos & bad taste  (Read 1137075 times)

Offline Alex_D

  • Colonel
  • ****
  • Posts: 494
    • View Profile
Re: Bugs, crashes, typos & bad taste
« Reply #4125 on: May 07, 2024, 11:03:03 pm »
The filter is odd, but it may to do with the handob of what the exalt guy is carrying.

Offline Kozinsky

  • Captain
  • ***
  • Posts: 99
  • Sorry for my bEd English
    • View Profile
Re: Bugs, crashes, typos & bad taste
« Reply #4126 on: May 08, 2024, 09:40:12 am »
Some strange graphics...
I'm having the same problems. I'm pretty sure it's a bug in the Arsenal Addition submod.
However, I keep forgetting to check this error after disabling this submod and all submods that depend on it :)

Offline AndyFox

  • Sergeant
  • **
  • Posts: 44
  • รท)
    • View Profile
Re: Bugs, crashes, typos & bad taste
« Reply #4127 on: May 09, 2024, 10:10:26 pm »
With mods disabled, it does not allow you to complete the mission when you have cyber disks under your control (there were 2 units). Mission to destroy the enemy base.

Offline Solarius Scorch

  • Global Moderator
  • Commander
  • ***
  • Posts: 11496
  • WE MUST DISSENT
    • View Profile
    • Nocturmal Productions modding studio website
Re: Bugs, crashes, typos & bad taste
« Reply #4128 on: May 10, 2024, 11:00:39 am »
With mods disabled, it does not allow you to complete the mission when you have cyber disks under your control (there were 2 units). Mission to destroy the enemy base.

Um... What do you mean "does not allow you to complete the mission"? How am I supposed to debug something like that?

Do you have a save? And can you please state what to check?

Offline Kozinsky

  • Captain
  • ***
  • Posts: 99
  • Sorry for my bEd English
    • View Profile
Re: Bugs, crashes, typos & bad taste
« Reply #4129 on: May 20, 2024, 05:29:26 pm »
Aliens are trying to abduct Natasha Morozova! :o

Offline psavola

  • Commander
  • *****
  • Posts: 649
    • View Profile
Re: Bugs, crashes, typos & bad taste
« Reply #4130 on: May 20, 2024, 05:53:20 pm »
Very strange. I understand very little of this, but I suppose the MOROZOVA region should not be used to spawn random abduction missions, because its regionWeight is undefined in regions_XCOMFILES.rul which should default to 0. Maybe OXCE is bugged somehow, you have a corrupt mod copy or some other mods are messing up by introducing non-zero regionWeight. Or I'm missing something, which is also entirely possible.

Offline Jimboman

  • Colonel
  • ****
  • Posts: 120
    • View Profile
Re: Bugs, crashes, typos & bad taste
« Reply #4131 on: May 20, 2024, 06:55:29 pm »
Aliens are trying to abduct Natasha Morozova! :o

I had a crash with that as well with the 3.4 version from github and openexe 7.11, no mods.

I went into my savegame and deleted all references to 'Natasha' missions and that sorted it.  It hasn't returned in three or four game months since then.

Maybe a holdover from something being changed?
« Last Edit: May 20, 2024, 07:01:46 pm by Jimboman »

Offline CrazedHarpooner

  • Sergeant
  • **
  • Posts: 38
    • View Profile
Re: Bugs, crashes, typos & bad taste
« Reply #4132 on: May 20, 2024, 10:18:39 pm »
Very strange. I understand very little of this, but I suppose the MOROZOVA region should not be used to spawn random abduction missions, because its regionWeight is undefined in regions_XCOMFILES.rul which should default to 0. Maybe OXCE is bugged somehow, you have a corrupt mod copy or some other mods are messing up by introducing non-zero regionWeight. Or I'm missing something, which is also entirely possible.
This is true, but the alien abduction missions in XCF have been redifined to have objective: 3 which makes it a site spawning mission and those follow their own rules by what I've understood, rendering the regionWeight irrelevant for this particular mission. I believe the issue lies in that REGION_NATASHA_MOROZOVA_HIDEOUT defines 2 missionZones for reasons unknown to me, perhaps WIP or from an old idea that got discarded, but as far as I could see, the 2nd zone (missionZone 1) is not actively used anywhere, yet for abduction site spawning purposes it's considered valid, at least until it has to spawn the UFOs and then it encounters the issue of no zone 5 (typical UFO entry/exit zones) defined for that region.

The fix in this case should be simple enough if nothing truly requires that missionZone 1, deleting the dash for said zone and allow for its missionAreas to be consolidated into missionZone 0 and thus, the region will no longer be a valid target for abductions.

Currently defined region
Spoiler:
Code: [Select]
- type: REGION_NATASHA_MOROZOVA_HIDEOUT
    missionZones: # European and American mountains, and Ural
      -
        - [142, 142, -73.5, -73.5, -317]
        - [93, 93, -84.5, -84.5, -317]
        - [213, 213, -80, -80, -317]
        - [118, 118, -72, -72, -317]
        - [44, 44, -68, -68, -317]
        - [163, 163, -66, -66, -317]
        - [82, 82, -63, -63, -317]
        - [61, 61, -67, -67, -317]
        - [129, 129, -67, -67, -317]
        - [160, 160, -63, -63, -317]
        - [36.34, 36.34, -68.47, -68.47, -317]
        - [44.81, 44.81, -67.02, -67.02, -317]
      -
        - [158, 158, -55, -55, -316]
        - [105.7, 105.7, -53.87, -53.87, -316]
        - [89, 89, -58, -58, -316]
        - [57, 57, -62, -62, -316]
        - [51, 51, -64, -64, -316]
        - [35, 35, -62, -62, -316]
        - [46.91, 46.91, -60.85, -60.85, -316]
        - [137.64, 137.64, -51.39, -51.39, -316]

Consolidated into single zone
Spoiler:
Code: [Select]
- type: REGION_NATASHA_MOROZOVA_HIDEOUT
    missionZones: # European and American mountains, and Ural
      -
        - [142, 142, -73.5, -73.5, -317]
        - [93, 93, -84.5, -84.5, -317]
        - [213, 213, -80, -80, -317]
        - [118, 118, -72, -72, -317]
        - [44, 44, -68, -68, -317]
        - [163, 163, -66, -66, -317]
        - [82, 82, -63, -63, -317]
        - [61, 61, -67, -67, -317]
        - [129, 129, -67, -67, -317]
        - [160, 160, -63, -63, -317]
        - [36.34, 36.34, -68.47, -68.47, -317]
        - [44.81, 44.81, -67.02, -67.02, -317]
        - [158, 158, -55, -55, -316]
        - [105.7, 105.7, -53.87, -53.87, -316]
        - [89, 89, -58, -58, -316]
        - [57, 57, -62, -62, -316]
        - [51, 51, -64, -64, -316]
        - [35, 35, -62, -62, -316]
        - [46.91, 46.91, -60.85, -60.85, -316]
        - [137.64, 137.64, -51.39, -51.39, -316]

Offline Jimboman

  • Colonel
  • ****
  • Posts: 120
    • View Profile
Re: Bugs, crashes, typos & bad taste
« Reply #4133 on: Today at 12:40:33 am »
I had a crash with that as well with the 3.4 version from github and openexe 7.11, no mods.

I went into my savegame and deleted all references to 'Natasha' missions and that sorted it.  It hasn't returned in three or four game months since then.

Maybe a holdover from something being changed?

You won;t believe this, but literally an hour or so after I posted that I had the same crash and 'repaired' it in the same way.  It's not game-breaking as I delete the missions from the save, it's just a little annoying.

Offline Jimboman

  • Colonel
  • ****
  • Posts: 120
    • View Profile
Re: Bugs, crashes, typos & bad taste
« Reply #4134 on: Today at 12:43:55 am »
This is true, but the alien abduction missions in XCF have been redifined to have objective: 3 which makes it a site spawning mission and those follow their own rules by what I've understood, rendering the regionWeight irrelevant for this particular mission. I believe the issue lies in that REGION_NATASHA_MOROZOVA_HIDEOUT defines 2 missionZones for reasons unknown to me, perhaps WIP or from an old idea that got discarded, but as far as I could see, the 2nd zone (missionZone 1) is not actively used anywhere, yet for abduction site spawning purposes it's considered valid, at least until it has to spawn the UFOs and then it encounters the issue of no zone 5 (typical UFO entry/exit zones) defined for that region.

The fix in this case should be simple enough if nothing truly requires that missionZone 1, deleting the dash for said zone and allow for its missionAreas to be consolidated into missionZone 0 and thus, the region will no longer be a valid target for abductions.

Currently defined region
Spoiler:
Code: [Select]
- type: REGION_NATASHA_MOROZOVA_HIDEOUT
    missionZones: # European and American mountains, and Ural
      -
        - [142, 142, -73.5, -73.5, -317]
        - [93, 93, -84.5, -84.5, -317]
        - [213, 213, -80, -80, -317]
        - [118, 118, -72, -72, -317]
        - [44, 44, -68, -68, -317]
        - [163, 163, -66, -66, -317]
        - [82, 82, -63, -63, -317]
        - [61, 61, -67, -67, -317]
        - [129, 129, -67, -67, -317]
        - [160, 160, -63, -63, -317]
        - [36.34, 36.34, -68.47, -68.47, -317]
        - [44.81, 44.81, -67.02, -67.02, -317]
      -
        - [158, 158, -55, -55, -316]
        - [105.7, 105.7, -53.87, -53.87, -316]
        - [89, 89, -58, -58, -316]
        - [57, 57, -62, -62, -316]
        - [51, 51, -64, -64, -316]
        - [35, 35, -62, -62, -316]
        - [46.91, 46.91, -60.85, -60.85, -316]
        - [137.64, 137.64, -51.39, -51.39, -316]

Consolidated into single zone
Spoiler:
Code: [Select]
- type: REGION_NATASHA_MOROZOVA_HIDEOUT
    missionZones: # European and American mountains, and Ural
      -
        - [142, 142, -73.5, -73.5, -317]
        - [93, 93, -84.5, -84.5, -317]
        - [213, 213, -80, -80, -317]
        - [118, 118, -72, -72, -317]
        - [44, 44, -68, -68, -317]
        - [163, 163, -66, -66, -317]
        - [82, 82, -63, -63, -317]
        - [61, 61, -67, -67, -317]
        - [129, 129, -67, -67, -317]
        - [160, 160, -63, -63, -317]
        - [36.34, 36.34, -68.47, -68.47, -317]
        - [44.81, 44.81, -67.02, -67.02, -317]
        - [158, 158, -55, -55, -316]
        - [105.7, 105.7, -53.87, -53.87, -316]
        - [89, 89, -58, -58, -316]
        - [57, 57, -62, -62, -316]
        - [51, 51, -64, -64, -316]
        - [35, 35, -62, -62, -316]
        - [46.91, 46.91, -60.85, -60.85, -316]
        - [137.64, 137.64, -51.39, -51.39, -316]

Thanks, I'll try this fix and see if it works. :)