OpenXcom Forum
OpenXcom Forks => OpenXcom Extended (OXCE) => OXCE Support => Topic started by: Thermite on April 25, 2020, 02:04:02 am
-
So, see attachments.
There you will find the log, mods I used and my save file on the "crash.zip" file.
I am working on a submod for XCF and, when the research "Breeding" is completed and I click on "show report" it crashes.
Could I be doing something wrong as a modder?
Edit: sorry for all caps, I am freaking out.
-
So, see attachments.
Where are the attachments? Either way, based on the fact that it is a seg-fault, my guess is a bad index number or something similar. But no way to know without the mod attached and I don't see it.
-
Where are the attachments? Either way, based on the fact that it is a seg-fault, my guess is a bad index number or something similar. But no way to know without the mod attached and I don't see it.
Did in a haste, sorry.
I removed the XCF mod folder, because it was taking forever to upload.
Edit: XCF version is 1.3.2 (or commit dd39380a if you use git).
-
Haven't read the bible section on ufoPaedia type id's, but that's where I think you're error is. Might want to do some digging.
-
Haven't read the bible section on ufoPaedia type id's, but that's where I think you're error is. Might want to do some digging.
Solarious said to use type 4.
*A*
-
The item's bigSprite is missing.
-
The item's bigSprite is missing.
How do I do that?
When I used:
items:
- type: STR_BREEDING
bigSprite:
mod: master
index: 297
weight: 0
invWidth: 2
invHeight: 3
It still gave the same problem.
O_o
-
1/ XCF is not the master (xcom1 is master)
2/ use 2 spaces for indentation, not 4
items:
- type: STR_BREEDING
bigSprite:
mod: x-com-files
index: 297
weight: 0
invWidth: 2
invHeight: 3
- type: STR_BREEDING_RAT
bigSprite: { mod: x-com-files, index: 297 }
weight: 0
invWidth: 2
invHeight: 3
-
1/ XCF is not the master (xcom1 is master)
2/ use 2 spaces for indentation, not 4
items:
- type: STR_BREEDING
bigSprite:
mod: x-com-files
index: 297
weight: 0
invWidth: 2
invHeight: 3
- type: STR_BREEDING_RAT
bigSprite: { mod: x-com-files, index: 297 }
weight: 0
invWidth: 2
invHeight: 3
thanks!