Ich brauche dringend Hilfe für ModSys

Users who are viewing this thread

Hamster66

Recruit
Also, ich war jetzt spontan der Meinung, unbedingt mit dem modden anfangen zu müssen. Also hab ich mich durch alle möglichen Guides zum Thema durchgearbeitet. Das ging auch alles wunderbar, bis zu dem Punkt an dem das Module System ins Spiel kam. Ab da stand überall, ich soll module_info.py öffnen und dort bei export_dir den Pfad zur Kopie von Native eingeben. Hab ich gemacht, gespeichert und dann build_module geöffnet [die Batchdatei]. Aber hier habe ich keine Ahnung mehr was ich falsch gemacht habe, denn da kommt die ganze Zeit der Error:

Initializing...
variables.txt not found. Creating new variables.txt file
Compiling all global variables...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Traceback (most recent call last):
File "process_global_variables.py", line 112, in <module>
save_variables(export_dir, variables,variable_uses)
File "C:\Users\IanHe\Desktop\Module_system 1.166\process_operations.py", line 178, in save_variables
file = open(export_dir + "variables.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/variables.txt'
Exporting strings...
Traceback (most recent call last):
File "process_strings.py", line 32, in <module>
save_strings(strings)
File "process_strings.py", line 15, in save_strings
ofile = open(export_dir + "strings.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/strings.txt'
Exporting skills...
Traceback (most recent call last):
File "process_skills.py", line 38, in <module>
save_skills()
File "process_skills.py", line 21, in save_skills
ofile = open(export_dir + "skills.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/skills.txt'
Exporting tracks...
Traceback (most recent call last):
File "process_music.py", line 29, in <module>
save_tracks()
File "process_music.py", line 21, in save_tracks
file = open(export_dir + "music.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/music.txt'
Exporting animations...
Traceback (most recent call last):
File "process_animations.py", line 67, in <module>
write_actions(animations,len(action_codes),action_codes,"actions.txt")
File "process_animations.py", line 30, in write_actions
file = open(export_dir + file_name,"w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/actions.txt'
Exporting meshes...
Traceback (most recent call last):
File "process_meshes.py", line 31, in <module>
save_meshes()
File "process_meshes.py", line 15, in save_meshes
ofile = open(export_dir + "meshes.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/meshes.txt'
Exporting sounds...
Traceback (most recent call last):
File "process_sounds.py", line 57, in <module>
write_sounds(sound_samples, sounds)
File "process_sounds.py", line 19, in write_sounds
ofile = open(export_dir + "sounds.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/sounds.txt'
Exporting skins...
Traceback (most recent call last):
File "process_skins.py", line 111, in <module>
export_skins(skins)
File "process_skins.py", line 51, in export_skins
ofile = open(export_dir + "skins.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/skins.txt'
Exporting map icons...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_map_icons.py", line 44, in <module>
save_map_icons(variables,variable_uses,tag_uses,quick_strings)
File "process_map_icons.py", line 15, in save_map_icons
ofile = open(export_dir + "map_icons.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/map_icons.txt'
Exporting faction data...
Traceback (most recent call last):
File "process_factions.py", line 76, in <module>
save_factions(relations)
File "process_factions.py", line 40, in save_factions
file = open(export_dir + "factions.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/factions.txt'
Exporting item data...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_items.py", line 78, in <module>
write_items(variables,variable_uses,tag_uses,quick_strings)
File "process_items.py", line 22, in write_items
ofile = open(itemkinds_file_name,"w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/item_kinds1.txt'
Exporting scene data...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_scenes.py", line 83, in <module>
save_scenes(variables,variable_uses,tag_uses)
File "process_scenes.py", line 52, in save_scenes
ofile = open(export_dir + "scenes.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/scenes.txt'
Exporting troops data
Traceback (most recent call last):
File "process_troops.py", line 116, in <module>
save_troops()
File "process_troops.py", line 19, in save_troops
file = open(export_dir + "troops.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/troops.txt'
Exporting particle data...
Traceback (most recent call last):
File "process_particle_sys.py", line 67, in <module>
save_particle_systems()
File "process_particle_sys.py", line 35, in save_particle_systems
ofile = open(export_dir + "particle_systems.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/particle_systems.txt'
Exporting scene props...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_scene_props.py", line 38, in <module>
save_scene_props(variables,variable_uses,tag_uses,quick_strings)
File "process_scene_props.py", line 16, in save_scene_props
ofile = open(export_dir + "scene_props.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/scene_props.txt'
Exporting tableau materials data...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_tableau_materials.py", line 37, in <module>
save_tableau_materials(variables,variable_uses,tag_uses,quick_strings)
File "process_tableau_materials.py", line 17, in save_tableau_materials
ofile = open(export_dir + "tableau_materials.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/tableau_materials.txt'
Exporting presentations...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_presentations.py", line 39, in <module>
save_presentations(variables,variable_uses,tag_uses,quick_strings)
File "process_presentations.py", line 17, in save_presentations
ofile = open(export_dir + "presentations.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/presentations.txt'
Exporting party_template data...
Traceback (most recent call last):
File "process_party_tmps.py", line 52, in <module>
save_party_templates()
File "process_party_tmps.py", line 26, in save_party_templates
file = open(export_dir + "party_templates.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/party_templates.txt'
Exporting parties
Creating new tag_uses.txt file...
Traceback (most recent call last):
File "process_parties.py", line 75, in <module>
save_parties(parties)
File "process_parties.py", line 18, in save_parties
file = open(export_dir + "parties.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/parties.txt'
Exporting quest data...
Traceback (most recent call last):
File "process_quests.py", line 36, in <module>
save_quests()
File "process_quests.py", line 15, in save_quests
ofile = open(export_dir + "quests.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/quests.txt'
Exporting info_page data...
Traceback (most recent call last):
File "process_info_pages.py", line 32, in <module>
save_info_pages()
File "process_info_pages.py", line 15, in save_info_pages
ofile = open(export_dir + "info_pages.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/info_pages.txt'
Exporting scripts...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_scripts.py", line 46, in <module>
save_scripts(variables,variable_uses,scripts,tag_uses,quick_strings)
File "process_scripts.py", line 16, in save_scripts
file = open(export_dir + "scripts.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/scripts.txt'
Exporting mission_template data...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_mission_tmps.py", line 70, in <module>
save_mission_templates(variables,variable_uses,tag_uses,quick_strings)
File "process_mission_tmps.py", line 44, in save_mission_templates
file = open(export_dir + "mission_templates.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/mission_templates.txt'
Exporting game menus data...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_game_menus.py", line 53, in <module>
save_game_menus(variables,variable_uses,tag_uses,quick_strings)
File "process_game_menus.py", line 28, in save_game_menus
ofile = open(export_dir + "menus.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/menus.txt'
exporting simple triggers...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_simple_triggers.py", line 30, in <module>
save_simple_triggers(variables,variable_uses,simple_triggers,tag_uses,quick_strings)
File "process_simple_triggers.py", line 14, in save_simple_triggers
file = open(export_dir + "simple_triggers.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/simple_triggers.txt'
exporting triggers...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_dialogs.py", line 205, in <module>
save_triggers(variables,variable_uses,triggers,tag_uses,quick_strings)
File "process_dialogs.py", line 53, in save_triggers
file = open(export_dir + "triggers.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/triggers.txt'
Checking global variable usages...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Exporting postfx_params...
Traceback (most recent call last):
File "process_postfx.py", line 33, in <module>
write_postfx_params(postfx_params)
File "process_postfx.py", line 19, in write_postfx_params
ofile = open(export_dir + "postfx.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/postfx.txt'

Und da ich von sowas relativ wenig Ahnung habe, bitte ich euch, mir da auf die Sprünge zu helfen und eine Lösung zu finden.
Bittee, ich probiere schon seit über 3 Stunden :sad:
 
Poste am besten mal, was du eingetragen hast.
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
Sollte aber nicht an der Mod liegen, hab's auch schon mit Native versucht, hat auch nicht geklappt.
 
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\" -->
Traceback (most recent call last):
File "process_init.py", line 4, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_global_variables.py", line 7, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_strings.py", line 6, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_skills.py", line 6, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_music.py", line 6, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_animations.py", line 6, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_meshes.py", line 6, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_sounds.py", line 5, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_skins.py", line 6, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_map_icons.py", line 5, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_factions.py", line 4, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Exporting item data...
Traceback (most recent call last):
File "process_items.py", line 66, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_scenes.py", line 4, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_troops.py", line 6, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_particle_sys.py", line 4, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_scene_props.py", line 6, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_tableau_materials.py", line 7, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_presentations.py", line 6, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_party_tmps.py", line 4, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_parties.py", line 6, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_quests.py", line 6, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_info_pages.py", line 6, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_scripts.py", line 6, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_mission_tmps.py", line 7, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_game_menus.py", line 7, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_simple_triggers.py", line 4, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_dialogs.py", line 7, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_global_variables_unused.py", line 4, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
File "process_postfx.py", line 5, in <module>
from module_info import *
File "C:\Users\IanHe\Desktop\Module_system 1.166\module_info.py", line 9
export_dir = "D:\SteamLibrary\Steam\steamapps\common\Mount&Blade Warband/Modules\Prophesy of Pendor V3.9.5 - Kopie\"
^
SyntaxError: EOL while scanning string literal

export_dir = "D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Prophesy of Pendor V3.9.5 - Kopie/" -->
Initializing...
variables.txt not found. Creating new variables.txt file
Compiling all global variables...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Traceback (most recent call last):
File "process_global_variables.py", line 112, in <module>
save_variables(export_dir, variables,variable_uses)
File "C:\Users\IanHe\Desktop\Module_system 1.166\process_operations.py", line 178, in save_variables
file = open(export_dir + "variables.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/variables.txt'
Exporting strings...
Traceback (most recent call last):
File "process_strings.py", line 32, in <module>
save_strings(strings)
File "process_strings.py", line 15, in save_strings
ofile = open(export_dir + "strings.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/strings.txt'
Exporting skills...
Traceback (most recent call last):
File "process_skills.py", line 38, in <module>
save_skills()
File "process_skills.py", line 21, in save_skills
ofile = open(export_dir + "skills.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/skills.txt'
Exporting tracks...
Traceback (most recent call last):
File "process_music.py", line 29, in <module>
save_tracks()
File "process_music.py", line 21, in save_tracks
file = open(export_dir + "music.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/music.txt'
Exporting animations...
Traceback (most recent call last):
File "process_animations.py", line 67, in <module>
write_actions(animations,len(action_codes),action_codes,"actions.txt")
File "process_animations.py", line 30, in write_actions
file = open(export_dir + file_name,"w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/actions.txt'
Exporting meshes...
Traceback (most recent call last):
File "process_meshes.py", line 31, in <module>
save_meshes()
File "process_meshes.py", line 15, in save_meshes
ofile = open(export_dir + "meshes.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/meshes.txt'
Exporting sounds...
Traceback (most recent call last):
File "process_sounds.py", line 57, in <module>
write_sounds(sound_samples, sounds)
File "process_sounds.py", line 19, in write_sounds
ofile = open(export_dir + "sounds.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/sounds.txt'
Exporting skins...
Traceback (most recent call last):
File "process_skins.py", line 111, in <module>
export_skins(skins)
File "process_skins.py", line 51, in export_skins
ofile = open(export_dir + "skins.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/skins.txt'
Exporting map icons...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_map_icons.py", line 44, in <module>
save_map_icons(variables,variable_uses,tag_uses,quick_strings)
File "process_map_icons.py", line 15, in save_map_icons
ofile = open(export_dir + "map_icons.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/map_icons.txt'
Exporting faction data...
Traceback (most recent call last):
File "process_factions.py", line 76, in <module>
save_factions(relations)
File "process_factions.py", line 40, in save_factions
file = open(export_dir + "factions.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/factions.txt'
Exporting item data...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_items.py", line 78, in <module>
write_items(variables,variable_uses,tag_uses,quick_strings)
File "process_items.py", line 22, in write_items
ofile = open(itemkinds_file_name,"w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/item_kinds1.txt'
Exporting scene data...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_scenes.py", line 83, in <module>
save_scenes(variables,variable_uses,tag_uses)
File "process_scenes.py", line 52, in save_scenes
ofile = open(export_dir + "scenes.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/scenes.txt'
Exporting troops data
Traceback (most recent call last):
File "process_troops.py", line 116, in <module>
save_troops()
File "process_troops.py", line 19, in save_troops
file = open(export_dir + "troops.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/troops.txt'
Exporting particle data...
Traceback (most recent call last):
File "process_particle_sys.py", line 67, in <module>
save_particle_systems()
File "process_particle_sys.py", line 35, in save_particle_systems
ofile = open(export_dir + "particle_systems.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/particle_systems.txt'
Exporting scene props...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_scene_props.py", line 38, in <module>
save_scene_props(variables,variable_uses,tag_uses,quick_strings)
File "process_scene_props.py", line 16, in save_scene_props
ofile = open(export_dir + "scene_props.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/scene_props.txt'
Exporting tableau materials data...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_tableau_materials.py", line 37, in <module>
save_tableau_materials(variables,variable_uses,tag_uses,quick_strings)
File "process_tableau_materials.py", line 17, in save_tableau_materials
ofile = open(export_dir + "tableau_materials.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/tableau_materials.txt'
Exporting presentations...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_presentations.py", line 39, in <module>
save_presentations(variables,variable_uses,tag_uses,quick_strings)
File "process_presentations.py", line 17, in save_presentations
ofile = open(export_dir + "presentations.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/presentations.txt'
Exporting party_template data...
Traceback (most recent call last):
File "process_party_tmps.py", line 52, in <module>
save_party_templates()
File "process_party_tmps.py", line 26, in save_party_templates
file = open(export_dir + "party_templates.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/party_templates.txt'
Exporting parties
Creating new tag_uses.txt file...
Traceback (most recent call last):
File "process_parties.py", line 75, in <module>
save_parties(parties)
File "process_parties.py", line 18, in save_parties
file = open(export_dir + "parties.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/parties.txt'
Exporting quest data...
Traceback (most recent call last):
File "process_quests.py", line 36, in <module>
save_quests()
File "process_quests.py", line 15, in save_quests
ofile = open(export_dir + "quests.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/quests.txt'
Exporting info_page data...
Traceback (most recent call last):
File "process_info_pages.py", line 32, in <module>
save_info_pages()
File "process_info_pages.py", line 15, in save_info_pages
ofile = open(export_dir + "info_pages.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/info_pages.txt'
Exporting scripts...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_scripts.py", line 46, in <module>
save_scripts(variables,variable_uses,scripts,tag_uses,quick_strings)
File "process_scripts.py", line 16, in save_scripts
file = open(export_dir + "scripts.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/scripts.txt'
Exporting mission_template data...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_mission_tmps.py", line 70, in <module>
save_mission_templates(variables,variable_uses,tag_uses,quick_strings)
File "process_mission_tmps.py", line 44, in save_mission_templates
file = open(export_dir + "mission_templates.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/mission_templates.txt'
Exporting game menus data...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_game_menus.py", line 53, in <module>
save_game_menus(variables,variable_uses,tag_uses,quick_strings)
File "process_game_menus.py", line 28, in save_game_menus
ofile = open(export_dir + "menus.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/menus.txt'
exporting simple triggers...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_simple_triggers.py", line 30, in <module>
save_simple_triggers(variables,variable_uses,simple_triggers,tag_uses,quick_strings)
File "process_simple_triggers.py", line 14, in save_simple_triggers
file = open(export_dir + "simple_triggers.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/simple_triggers.txt'
exporting triggers...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Creating new tag_uses.txt file...
Creating new quick_strings.txt file...
Traceback (most recent call last):
File "process_dialogs.py", line 205, in <module>
save_triggers(variables,variable_uses,triggers,tag_uses,quick_strings)
File "process_dialogs.py", line 53, in save_triggers
file = open(export_dir + "triggers.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/triggers.txt'
Checking global variable usages...
variables.txt not found. Creating new variables.txt file
variable_uses.txt not found. Creating new variable_uses.txt file
Exporting postfx_params...
Traceback (most recent call last):
File "process_postfx.py", line 33, in <module>
write_postfx_params(postfx_params)
File "process_postfx.py", line 19, in write_postfx_params
ofile = open(export_dir + "postfx.txt","w")
IOError: [Errno 2] No such file or directory: 'D:/SteamLibrary/Steam/steamapps/common/Mount&Blade Warband/Modules/Native/postfx.txt'

Ich hoffe damit ist die Sache, was bei den / oder \ passiert, geklärt.
 
OK, hat sich alles erledigt, es funktioniert jetzt. An alle die dasselbe Problem haben, ich habe einfach nochmal alles von vorne gemacht, alles neu installiert und bei mir geht's jetzt. Damit ist das ganze hier eigentlich abgeschlossen. Danke für eure Hilfe:smile:
 
Back
Top Bottom