Jump to content

Captivity Event: Stories viewer


Recommended Posts

Posted

Captivity Event: Stories viewer


The viewer allows you to explore existing events without running the game. It is primarily a helper tool to develop and/or troubleshoot event chains that go along Captivity Events. The software will list all valid events, filter the list, show details about a specific event, and a preview of the event chains when applicable.

 

There are caveat and limitations with version 1.0. The software is good enough to be usable, but it has quirks and has seen only one tester (yours truly). I'll be grateful for any feedback.

 

Installation:

 

Unpack the archive wherever you want, then double-click the pce.exe file. While written using python, the software should work "as is". 

 

Configuration:

 

During the first run, you'll be greeted with a settings windows. If you wish to make it reappear, you can start the software using the --settings argument (i.e. pce.exe --settings).

 

The first element of the settings windows allows you to inform of the path of each module you want to work on. You have to select the folder containing the submodule. For example, zCEDefaults for the default events. The Validate button will attempt to validate each XML file against the XSD. It is a lengthy process, as such the window will appear to freeze. I still need to implement a "please wait" dialogue. You'll be notified one or more files does not validate, inviting you to consult the log. The log should appear alongside the executable, as pce.log.

 

You need to point to the CEEventsModal.xsd file contained within the Captivity Events mod. It can be found under: "Mount & Blade II Bannerlord/Modules/zCaptivityEvents/ModuleLoader/CaptivityRequired/Events/CEEventsModal.xsd"

 

Usage:

 

As illustrated by the screenshots, you'll be greeted with a list of events. You can filter that list by entering words, that will create a match against the name of the events. Multiple strings can be entered separately. A hidden search feature allows you to filter on the content of the text element using the indices text:"". The same applies for skill usage (e.g. skill:"OneHanded" will filter out all event that doesn't interact with the skill OneHanded).

 

The rest of the software is largely self-evident. Though, if you have trouble understanding something, please do ask.

 

 

 

You can follow the development on the GitHub page of the project.

 

 

 

 

 


  • Submitter
  • Submitted
    01/10/2024
  • Category
  • Requirements
  • Install Instructions

 

Posted

Hmm, well validating didn't seem to work, though maybe i was a bit too hasty, it's also not starting up anymore giving me this error:

Spoiler

Error.png.d804e6be5002fa532db9ec06b2769bdb.png

pce.logthis being the log it gave me.

Posted

The log file shows that it is starting to process xml files, then abruptly stops... That's interesting. Does it break while using the settings window? Note that the log file gets overridden after each run. So the previous error, if there was one, got lost.

 

OnInit is a wxPython thing. Means something breaks as the software initialize. Could you try starting the software through a cmd prompt? You need to cd path\to\pce, then just type pce.exe. The command prompt should have the exception outputs.

 

Could you share the settings.conf file too? Or remove it and try to reconfigure the software, break it, and make sure the log file isn't quite as empty.

Posted

So command prompt can run it, yes it broke as i clicked validate with default captivity set and the XSD file linked, but it didn't shut down it just stopped doing the validating.  It's only after i closed the application that i couldn't open it again.settings.conf

 

Tried again with this as result:

then closed the application again after 5m tried to open through exe, same error as previously.  opening with cmd prompt works but still no validating.

Posted
18 minutes ago, B0ukensha said:

but it didn't shut down it just stopped doing the validating.

Right, I did note that the software will appear to freeze during validation. I haven't setup a dialogue to highlight the fact that work is being done. It's a long process, need to give it time. Generally less than a minute, but it depends on your CPU.

 

I'll try to get a hint setup. For clarity: did you wait 5 minutes for the validation, or did you wait 5 minutes after closing the application?

Posted (edited)
1 hour ago, Whizkid said:

would be nice be there are validation checks to fix errors in xml files e.g. missing syntax in existing xml files.

I don't quite understand your suggestion. So all XML files must be valid as per the XSD. An XSD is a XML Schema Document, it tells the XML engine about the proper structure of an XML file. This tool will refuse to load any malformed XML file, any of those will generate an error event in the log file.

 

Example:

ERROR:pycestorieseditor.ceevents:Invalid xml file:
   /mnt/Games2/steamapps/common/Mount & Blade II Bannerlord/Modules/zSadSunsEvents/Events/SadSun_Captor_Events_01.xml.
   Msg: Unexpected child with tag 'WeightedChanceOfOccuring' at position 8.

 

There's no notice within the software itself to inform the user if anything went wrong, if that's what your are asking. I could put a widget somewhere to that effect. Would you like that?

Edited by bicobus
Posted
3 hours ago, bicobus said:

I don't quite understand your suggestion. So all XML files must be valid as per the XSD. An XSD is a XML Schema Document, it tells the XML engine about the proper structure of an XML file. This tool will refuse to load any malformed XML file, any of those will generate an error event in the log file.

 

Example:

ERROR:pycestorieseditor.ceevents:Invalid xml file:
   /mnt/Games2/steamapps/common/Mount & Blade II Bannerlord/Modules/zSadSunsEvents/Events/SadSun_Captor_Events_01.xml.
   Msg: Unexpected child with tag 'WeightedChanceOfOccuring' at position 8.

 

There's no notice within the software itself to inform the user if anything went wrong, if that's what your are asking. I could put a widget somewhere to that effect. Would you like that?

 

 

yes its what i am asking since your program reads and shows the choices and events that happens, being able to also detect or show these errors especially missing "weightedchanceofoccuring" or "CanOnlyBeTriggeredByOtherEvent" missing etc.. will help debug why events are not activating.

 

events having UseOtherConditions-"xxxxxx" or UseConditions="xxxx" will fail to activate if the are problems with said conditions e.g. missing "RestrictedListOfFlags".

 

as the number of events grows debug becomes an issue.

 

the current version showing the events is helpful but that can also be seen with the xml files fyi.

 

anyways good job as i tested it and it works as intended also perhaps auto read the settings instead of making users locate and fill in settings, i just figured it out based on your screenshots which was extremely helpful.

 

Posted
1 hour ago, Whizkid said:

anyways good job as i tested it and it works as intended also perhaps auto read the settings instead of making users locate and fill in settings, i just figured it out based on your screenshots which was extremely helpful.

I have no way of knowing where the stuff is located. The game is available through a variety of stores, and I'm not going to try figuring out where each install the game files. You may not want to load all the CE modules either, so I prefer flexibility of choice to inferring user intent.

 

1 hour ago, Whizkid said:

the current version showing the events is helpful but that can also be seen with the xml files fyi.

I don't believe I inform from which XML file an event comes from. Useful information if they get overridden. I'll try to display that information, but it'll make the data structure a bit more complex. No promises.

 

1 hour ago, Whizkid said:

yes its what i am asking since your program reads and shows the choices and events that happens, being able to also detect or show these errors especially missing "weightedchanceofoccuring" or "CanOnlyBeTriggeredByOtherEvent" missing etc.. will help debug why events are not activating.

Yeah, okay.

 

  • 2 weeks later...
Posted
On 1/24/2024 at 3:26 AM, Xaramire said:

How long does it take, mines been goin forever 

To parse everything? It depends on your CPU. Having more cores helps. If you wait for more than 2 minutes, then something's probably gone wrong.

 

Though I can't be certain about the environment in which the software runs, and there may be something interfering with the process. However, on that point, it's entirely left to the user to figure out as I have no means to troubleshoot on your machine. There is no analytics embedded in the software, so I get no feedback other than users self-reports.

Posted
On 1/26/2024 at 11:17 AM, bicobus said:

To parse everything? It depends on your CPU. Having more cores helps. If you wait for more than 2 minutes, then something's probably gone wrong.

 

Though I can't be certain about the environment in which the software runs, and there may be something interfering with the process. However, on that point, it's entirely left to the user to figure out as I have no means to troubleshoot on your machine. There is no analytics embedded in the software, so I get no feedback other than users self-reports.

My bad it seems it only breaks with 

 

Posted (edited)
4 hours ago, Xaramire said:

My bad it seems it only breaks with 

 

 

Thanks! You found a bug. I'll post an updated version momentarily.

Edited by bicobus
  • 1 year later...
Posted (edited)

What does the Error Log mean?
 

2025-03-04 17:36:56,899 xmlschema       INFO     MainProcess Resource 'XMLSchema.xsd' is already loaded
2025-03-04 17:36:58,158 pycestorieseditor.ceevents INFO     SpawnPoolWorker-448 -start- Fut_General_Events.xml
2025-03-04 17:36:58,164 pycestorieseditor.ceevents ERROR    SpawnPoolWorker-448 Invalid xml file: D:\GOG\Mount & Blade II Bannerlord\Modules\zSGCaptivityEvents\Events\Fut_General_Events.xml. Msg: Unexpected child with tag 'WeightedChanceOfOccuring' at position 8.
2025-03-04 17:36:58,164 pycestorieseditor.ceevents INFO     SpawnPoolWorker-448 -stop- Fut_General_Events.xml
nts.xml

for [

 

as well as

2025-03-04 17:59:09,035 xmlschema       INFO     MainProcess Resource 'XMLSchema.xsd' is already loaded
2025-03-04 17:59:10,205 pycestorieseditor.ceevents INFO     SpawnPoolWorker-162 -start- UTR_Slave_trai202025-03-04 17:59:10,837 pycestorieseditor.ceevents INFO     SpawnPoolWorker-163 -stop- UTR_captor.xml
_slave_maiden_events.xml
2025-03-04 17:59:10,900 pycestorieseditor.ceevents WARNING  MainProcess Override of 'UTR_captive_4' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zUTR\Events\UTR_captive.xml)
2025-03-04 17:59:10,900 pycestorieseditor.ceevents WARNING  MainProcess Override of 'UTR_captive_4_fail' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zUTR\Events\UTR_captive.xml)
2025-03-04 17:59:10,900 pycestorieseditor.ceevents WARNING  MainProcess Override of 'UTR_captive_4_sucsess' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zUTR\Events\UTR_captive.xml)
2025-03-04 17:59:10,900 pycestorieseditor.ceevents WARNING  MainProcess Override of 'UTR_captive_4_OPsucsess' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zUTR\Events\UTR_captive.xml)
2025-03-04 17:59:10,900 pycestorieseditor.ceevents WARNING  MainProcess Override of 'UTR_captive_3_fail' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zUTR\Events\UTR_captive.xml)

 

 

modlist:

CE: Required

CE: Default

CE: Animation

CE: Arena

CE: Bandit

CE: Holiday

Boukenshas Binder

BC Captor Gear and Girls

SG's CE

UTR CE

 

2025-03-04 18:18:46,600 xmlschema       INFO     MainProcess Resource 'XMLSchema.xsd' is already loaded
2025-03-04 18:18:47,905 pycestorieseditor.ceevents INFO     SpawnPoolWorker-229 -start- TBSlaveryEventsFe2025-03-0202025-03-04 18:18:49,179 pycestorieseditor.ceevents INFO     SpawnPoolWorker-234 -stop- BCOverrideCaptorEvents.xml
2025-03-04 18:18:49,179 pycestorieseditor.ceevents INFO     SpawnPoolWorker-234 -start- BCOverrideCaptorRequiredEvents.xml
2025-03-04 18:18:49,312 pycestorieseditor.ceevents INFO     SpawnPoolWorker-234 -stop- BCOverrideCaptorRequiredEvents.xml
2025-03-04 18:18:49,314 pycestorieseditor.ceevents INFO2025-03-04 18:18:49,984 pycestorieseditor.ceevents INFO     S2025-03-04 18:18:50,289 pycestorieseditor.ceevents INFO     SpawnPoolWorker-234 -stop- BCOverrideRandomEvents.xml
2025-03-04 18:18:50,289 pycestoriesedit2025-03-04 18:18:51,490 pycestorieseditor.ceevents INFO     SpawnPoolWorker-230 -stop- BCCompanionDating.xml
2025-03-04 18:18:51,490 pycestorieseditor.ceevents INFO     SpawnPoolWorker-230 -start- BCOverrideBrothelEvents.xml
2025-03-04 18:18:52,063 pycestorieseditor.ceevents INFO     SpawnPoolWorker-230 -stop- BCOverrideBrothelEvents.xml
2025-03-04 18:18:52,075 pycestorieseditor.ceevents INFO     SpawnPoolWorker-230 -start- BCOverrideCaptivityEvents.xml
2025-03-04 18:18:52,828 pycestorieseditor.ceevents INFO     SpawnPoolWorker-230 -stop- BCOverrideCaptivityEvents.xml
2025-03-04 18:18:52,828 pycestorieseditor.ceevents INFO     SpawnPoolWorker-230 -start- BCOverrideCaptivity_Female_Bandits_Noncon.xml
2025-03-04 18:18:53,034 pycestorieseditor.ceevents INFO     SpawnPoolWorker-230 -stop- BCOverrideCaptivity_Female_Bandits_Noncon.xml
eevents INFO     SpawnPoolWorker-234 -stop- TBCaptiveEventsFemale_Dream_Noncon.xml
xml
2025-03-04 18:18:49,342 pycestorieseditor.ceevents INFO     SpawnPoolWorker-236 -stop- TBCaptorEventsCommon_Concubinage.xml                                                                                                                                                                                                                                                                                                                                                                              2025-03-04 18:18:53,304 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_waiting_menu' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\a_TBOverrideWaitingMenus.xml)
2025-03-04 18:18:53,320 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_waiting_menu_siege' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\a_TBOverrideWaitingMenus.xml)
2025-03-04 18:18:53,320 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_waiting_menu_2' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\a_TBOverrideWaitingMenus.xml)
2025-03-04 18:18:53,320 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_waiting_menu_2_siege' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\a_TBOverrideWaitingMenus.xml)
2025-03-04 18:18:53,320 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_waiting_menu_3' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\a_TBOverrideWaitingMenus.xml)
2025-03-04 18:18:53,320 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_waiting_menu_3_siege' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\a_TBOverrideWaitingMenus.xml)
2025-03-04 18:18:53,320 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_waiting_menu_4' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\a_TBOverrideWaitingMenus.xml)
2025-03-04 18:18:53,336 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_waiting_menu_5' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\a_TBOverrideWaitingMenus.xml)
2025-03-04 18:18:53,336 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_waiting_menu_6' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\a_TBOverrideWaitingMenus.xml)
2025-03-04 18:18:53,336 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_waiting_menu_4_siege' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\a_TBOverrideWaitingMenus.xml)
2025-03-04 18:18:53,336 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_waiting_menu_5_siege' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\a_TBOverrideWaitingMenus.xml)
2025-03-04 18:18:53,336 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_waiting_menu_6_siege' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\a_TBOverrideWaitingMenus.xml)
2025-03-04 18:18:53,336 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_waiting_menu_7' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\a_TBOverrideWaitingMenus.xml)
2025-03-04 18:18:53,336 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_waiting_menu_8' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\a_TBOverrideWaitingMenus.xml)
2025-03-04 18:18:53,525 pycestorieseditor.ceevents WARNING  MainProcess Override of 'BC_event_female_sex_fff_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCCaptorTFF.xml)
2025-03-04 18:18:53,653 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_level_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,653 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_level_2' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,653 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_waiting_menu' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,653 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_waiting_menu_2' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,653 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_waiting_menu_3' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,653 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_waiting_menu_4' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,653 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_waiting_menu_5' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,653 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_siege_menu_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,653 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_siege_menu_2' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,653 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_siege_menu_3' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,669 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,669 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_2' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,669 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_1_obedient_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,669 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_1_obedient_1_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,669 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_1_obedient_2' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,675 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_1_obedient_2_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,675 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_2_obedient_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,675 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_2_obedient_2_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,675 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_obedient_pleased' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,675 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_1_begging_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,675 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_1_begging_1_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,685 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_1_begging_2' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,685 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_1_begging_2_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,685 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_2_reluctantly_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,685 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_2_reluctantly_1_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,685 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_1_punishment_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,685 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_1_punishment_1_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,685 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_1_punishment_2' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,685 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_1_punishment_3' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,685 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_1_punishment_3_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,700 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_escape_failure' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,700 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_escape_failure_2' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,700 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slave_prostitution_escape_success' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,700 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_free_prostitution_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,700 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_free_prostitution_1_great_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,700 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_free_prostitution_1_great_1_2' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,700 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_free_prostitution_1_good_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,700 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_free_prostitution_1_good_2' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,700 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_free_prostitution_1_good_2_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,700 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_free_prostitution_1_bad_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,700 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_renowned' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,716 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_free_prostitution_2_great_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,716 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_free_prostitution_2_great_1_2' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,716 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_free_prostitution_2_good_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,716 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_free_prostitution_2_bad_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,716 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_owner_great' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,716 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_owner_great_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,716 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_owner_great_2' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,716 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_owner_great_2_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,716 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_owner_great_2_2' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,716 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_owner_good' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,732 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_owner_bad' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,732 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_owner_bad_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,732 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_owner_bad_2' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,732 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_street_1_good' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,732 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_street_1_none' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,732 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_street_1_slave' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,732 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_street_1_slave_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,732 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_street_1_slave_2' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,732 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_prostitution_street_1_slave_3' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideBrothelEvents.xml)
2025-03-04 18:18:53,827 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_captive_rebel' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorEvents.xml)
2025-03-04 18:18:53,827 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_female_three_female' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorEvents.xml)
2025-03-04 18:18:53,831 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_male_three_female' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorEvents.xml)
2025-03-04 18:18:53,831 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_female_three_male' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorEvents.xml)
2025-03-04 18:18:53,831 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_male_three_male' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorEvents.xml)
2025-03-04 18:18:53,831 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_female_bolton_one' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorEvents.xml)
2025-03-04 18:18:53,831 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_female_bolton_two' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorEvents.xml)
2025-03-04 18:18:53,831 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_male_bolton_one' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorEvents.xml)
2025-03-04 18:18:53,831 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_male_bolton_two' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorEvents.xml)
2025-03-04 18:18:53,843 pycestorieseditor.ceevents WARNING  MainProcess Override of 'TB_captor_tds_kidnap' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorEvents.xml)
2025-03-04 18:18:53,875 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_male_sexual_menu' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorRequiredEvents.xml)
2025-03-04 18:18:53,876 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_male_sexual_strip' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorRequiredEvents.xml)
2025-03-04 18:18:53,876 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_female_sexual_menu' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorRequiredEvents.xml)
2025-03-04 18:18:53,881 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_female_sexual_menu_m' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorRequiredEvents.xml)
2025-03-04 18:18:53,881 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_male_sexual_menu_m' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorRequiredEvents.xml)
2025-03-04 18:18:53,881 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_male_sexual_strip_m' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorRequiredEvents.xml)
2025-03-04 18:18:53,881 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_male_two_female' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorRequiredEvents.xml)
2025-03-04 18:18:53,881 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_female_two_female' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorRequiredEvents.xml)
2025-03-04 18:18:53,881 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_male_two_male' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorRequiredEvents.xml)
2025-03-04 18:18:53,891 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_female_two_male' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideCaptorRequiredEvents.xml)
2025-03-04 18:18:53,923 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_random_event_female_E1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideRandomEvents.xml)
2025-03-04 18:18:53,923 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_random_event_companions_female_f' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideRandomEvents.xml)
2025-03-04 18:18:53,923 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_random_event_companions_female_m' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideRandomEvents.xml)
2025-03-04 18:18:53,923 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_random_event_companions_male_f' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideRandomEvents.xml)
2025-03-04 18:18:53,923 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_spouse_event_female_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideRandomEvents.xml)
2025-03-04 18:18:53,923 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_spouse_event_female_city_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\BCOverrideRandomEvents.xml)
2025-03-04 18:18:54,145 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_captivity_interest' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,145 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_sexual_three' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,145 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_sexual_three_next' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,145 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_sleep' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,145 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_drunkflirt' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,145 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_screaming' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,145 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_coercion' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,145 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_coercion_continued' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,145 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_coercion_continued_next' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,145 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_coercion_continued_next_success' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,145 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_femdom' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,160 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_femdom_continued' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,160 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_sexual_hardcore_two' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,160 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_sexual_hardcore_two_continued' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,160 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_sexual_two' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,160 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_sexual_two_next' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,160 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_settlement' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,160 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_settlement_next' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,160 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_prison_sexual' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,160 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_prison_sexual_next' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,176 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_prison_sexual_two' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,176 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_prison_sexual_two_next' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,176 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_prison_sexual_two_continue' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,176 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_castle' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,176 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_castle_next' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,176 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_hideout' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,176 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_hideout_next' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,176 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_settlement_village' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,176 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_settlement_village_next' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,176 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_siege' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,176 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_siege_castle' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,191 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_captivity_prostitution' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,191 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_waiting_menu_general_1' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,191 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_waiting_menu_general_2' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBCaptiveEventsFemale_Sexual_Noncon.xml)
2025-03-04 18:18:54,889 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_random_event_wine' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRandomEvents.xml)
2025-03-04 18:18:54,889 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_random_event_dead' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRandomEvents.xml)
2025-03-04 18:18:54,889 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_random_event_found_gold' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRandomEvents.xml)
2025-03-04 18:18:54,889 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_random_event_lost_gold' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRandomEvents.xml)
2025-03-04 18:18:54,920 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_menu_captivity_castle_taken_prisoner_sexual' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRequiredCaptiveEvents.xml)
2025-03-04 18:18:54,920 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_defeated_and_taken_prisoner_sexual' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRequiredCaptiveEvents.xml)
2025-03-04 18:18:54,920 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_taken_prisoner_sexual' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRequiredCaptiveEvents.xml)
2025-03-04 18:18:54,920 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_taken_prisoner' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRequiredCaptiveEvents.xml)
2025-03-04 18:18:54,920 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_advanced_sexual_capture' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRequiredCaptiveEvents.xml)
2025-03-04 18:18:54,920 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_advanced_sexual_capture_settlement' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRequiredCaptiveEvents.xml)
2025-03-04 18:18:54,920 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_advanced_sexual_capture_village' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRequiredCaptiveEvents.xml)
2025-03-04 18:18:54,920 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captivity_sexual_escape_failure' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRequiredCaptiveEvents.xml)
2025-03-04 18:18:54,936 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captivity_sexual_escape_success' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRequiredCaptiveEvents.xml)
2025-03-04 18:18:54,936 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_alt_702' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRequiredCaptiveEvents.xml)
2025-03-04 18:18:54,936 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_common_alt_802' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRequiredCaptiveEvents.xml)
2025-03-04 18:18:54,967 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_female_escape' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRequiredEscapeEvents_Noncon.xml)
2025-03-04 18:18:54,967 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_male_escape' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRequiredEscapeEvents_Noncon.xml)
2025-03-04 18:18:54,967 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_male_slave_escape' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRequiredEscapeEvents_Noncon.xml)
2025-03-04 18:18:54,967 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_captor_female_slave_escape' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideRequiredEscapeEvents_Noncon.xml)
2025-03-04 18:18:54,999 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_town_merchant' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideSlaveryEvents.xml)
2025-03-04 18:18:54,999 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_market' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideSlaveryEvents.xml)
2025-03-04 18:18:54,999 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_market_slave' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideSlaveryEvents.xml)
2025-03-04 18:18:54,999 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_part_one' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideSlaveryEvents.xml)
2025-03-04 18:18:54,999 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_broken' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideSlaveryEvents.xml)
2025-03-04 18:18:54,999 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_broken_escape' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideSlaveryEvents.xml)
2025-03-04 18:18:54,999 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_sold_caravan' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideSlaveryEvents.xml)
2025-03-04 18:18:54,999 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_sold_caravan_slave' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideSlaveryEvents.xml)
2025-03-04 18:18:54,999 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_sold' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideSlaveryEvents.xml)
2025-03-04 18:18:54,999 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_sold_slave' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideSlaveryEvents.xml)
2025-03-04 18:18:55,015 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_caravan_slave_one' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideSlaveryEvents.xml)
2025-03-04 18:18:55,015 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_caravan_slave_two' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideSlaveryEvents.xml)
2025-03-04 18:18:55,015 pycestorieseditor.ceevents WARNING  MainProcess Override of 'CE_slavery_alt_101' already present in bucket. (trigger: D:\GOG\Mount & Blade II Bannerlord\Modules\zCEzBCCaptorGear\Events\TBOverrideSlaveryEvents.xml)

 

Edited by Mirukajko
Posted

Invalid XML means that the XML doesn't match the scheme expected by the game, or there is a syntax error. So the tool ignores it. In that case, the problem is:

Unexpected child with tag 'WeightedChanceOfOccuring' at position 8.

 

SG's Bannerlord CE Events last update was in 2020, most likely no longer valid.

 

The warnings from parsing UTR informs you that there already is an event by that name recorded somewhere else in your event list. Thus either duplication, or override. It's more informative than an issue.

  • 3 months later...
Posted (edited)
6 hours ago, stevenlu said:

What does this error mean?

Untitled.png

The error itself tells you that a part of numpy can't find itself as a module, which shouldn't happen. Apparently v1.1.3's release is buggy. I don't know why just yet. The previous version will work, so long you don't try to visualize the events.

 

You can also run it using python itself, after cloning the repo. Issue seems to be from cx_Freeze.

Edited by bicobus
Posted
7 hours ago, stevenlu said:

What does this error mean?

Untitled.png

Can you try this version and tell me if you still encounter the error? https://github.com/BannerlordCE/pyCEStoriesEditor/releases/tag/debug-workflow-24

 

If the linked build works, then it would suggest that you do not have Visual C++ 2017 installed on your computer. This build includes it in the archive. You can install Visual C++ using the following installer: https://aka.ms/vs/17/release/vc_redist.x64.exe

Posted (edited)
On 6/9/2025 at 7:52 PM, bicobus said:

Can you try this version and tell me if you still encounter the error? https://github.com/BannerlordCE/pyCEStoriesEditor/releases/tag/debug-workflow-24

 

If the linked build works, then it would suggest that you do not have Visual C++ 2017 installed on your computer. This build includes it in the archive. You can install Visual C++ using the following installer: https://aka.ms/vs/17/release/vc_redist.x64.exe

Thanks, the debug version worked.

Yet strangely, even after installing the VC file, I still can't run the original version, same error.

Edited by stevenlu
Posted

The issue is with loading dll files (shared library in binary format). Python requires the  Microsoft Visual C++ Redistributable being installed. I originally didn't redistribute it with this software because I didn't bother to deal with the license. I still have no clue if I can redistribute those dlls.

 

Version 1.1.3 and the debug one are functionally the same, the only difference is the build process (I updated some packages and included msvcr). To be honest, I don't know why it doesn't work with the redistributable installed. Maybe a wrong version of it?

 

In any case, if you do use this software, could you try to preview an event and tell me if it still crashes?

  • 1 month later...
Posted
13 hours ago, Antonio1038 said:

 

hi i have a question why dosent the preview pictures appear or not fully and i dont have a logo like you 

Screenshot2025-07-21210902.png.35e5a884ad01c997ee2c2a74b87f6458.png

Yeah, it seems to be the libpng issue still. The image probably fails to load... And this time does so silently instead of crashing, which is intended.

 

I'll try to figure out a workaround. Could you tell me which version you use? Is it 1.1.4?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...