raozspaz的最近内容

  1. raozspaz

    Modding Q&A [For Quick Questions and Answers]

    jacobhinds 说:
    You've done everything right, it's not your fault. Someone who was working on Viking Conquest decided now was a good time to rename a single vital file called header_operations.py, and change the word marshall to marshal for no good reason. This is extremely frustrating because it broke a lot of stuff even outside of viking conquest, and due to weird compiling errors I didn't realise what was going on until I'd reinstalled the module system twice.  :neutral:

    If you're using notepad ++, search through all the files simultaneously and replace every instance of "party_set_marshall" with "party_set_marshal". It shouldn't take long as there aren't many of them.

    But damn, what a pain in the butt.

    Can I do the same thing with Python since that is what I am using. Just have to do each file on its own?

    EDIT: Did it anyways just assuming that I had to and after doing it (which didn't take long) everything worked out fine. Now let's see how many times I screw up during the actually modding step of all this XP
  2. raozspaz

    Modding Q&A [For Quick Questions and Answers]

    Hello. I am basically new to this forums, but through the guidance of multiple tutorials, I ended up here in order to try and figure out how to do modding for Mount & Blade Warband. In order to not waste anyone's time, I will get straight to the point:

    I was following this guide --> http://forums.taleworlds.com/index.php/topic,240255.0.html quite literally step for step. Did nothing that the guide didn't tell me to do. However, when I went in and activated the batch file to start the module, the following showed up in the command prompt:

    Traceback (most recent call last):
      File "process_init.py", line 2, in <module>
        from process_operations import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\process_operations.py", line 20, in <module>
        from module_scripts import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\module_scripts.py", line 19840, in <module>
        (party_set_marshall, ":eek:ld_marshall_party", 0),
    NameError: name 'party_set_marshall' is not defined
    Traceback (most recent call last):
      File "process_global_variables.py", line 6, in <module>
        from module_dialogs import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\module_dialogs.py", line 10745, in <module>
        (party_set_marshall, ":eek:ld_marshall_party", 0),
    NameError: name 'party_set_marshall' is not defined
    Exporting strings...
    Exporting skills...
    Exporting tracks...
    Exporting animations...
    Exporting meshes...
    Exporting sounds...
    Exporting skins...
    Traceback (most recent call last):
      File "process_map_icons.py", line 6, in <module>
        from process_operations import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\process_operations.py", line 20, in <module>
        from module_scripts import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\module_scripts.py", line 19840, in <module>
        (party_set_marshall, ":eek:ld_marshall_party", 0),
    NameError: name 'party_set_marshall' is not defined
    Exporting faction data...
    Exporting item data...
    Traceback (most recent call last):
      File "process_items.py", line 66, in <module>
        from process_operations import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\process_operations.py", line 20, in <module>
        from module_scripts import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\module_scripts.py", line 19840, in <module>
        (party_set_marshall, ":eek:ld_marshall_party", 0),
    NameError: name 'party_set_marshall' is not defined
    Exporting scene data...
    Traceback (most recent call last):
      File "process_scenes.py", line 15, in <module>
        from process_operations import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\process_operations.py", line 20, in <module>
        from module_scripts import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\module_scripts.py", line 19840, in <module>
        (party_set_marshall, ":eek:ld_marshall_party", 0),
    NameError: name 'party_set_marshall' is not defined
    Exporting troops data
    Exporting particle data...
    Traceback (most recent call last):
      File "process_scene_props.py", line 7, in <module>
        from process_operations import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\process_operations.py", line 20, in <module>
        from module_scripts import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\module_scripts.py", line 19840, in <module>
        (party_set_marshall, ":eek:ld_marshall_party", 0),
    NameError: name 'party_set_marshall' is not defined
    Traceback (most recent call last):
      File "process_tableau_materials.py", line 8, in <module>
        from process_operations import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\process_operations.py", line 20, in <module>
        from module_scripts import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\module_scripts.py", line 19840, in <module>
        (party_set_marshall, ":eek:ld_marshall_party", 0),
    NameError: name 'party_set_marshall' is not defined
    Traceback (most recent call last):
      File "process_presentations.py", line 4, in <module>
        from module_presentations import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\module_presentations.py", line 8614, in <module>
        (party_set_marshall, ":eek:ld_marshall", 0),
    NameError: name 'party_set_marshall' is not defined
    Exporting party_template data...
    Traceback (most recent call last):
      File "process_parties.py", line 4, in <module>
        from module_game_menus import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\module_game_menus.py", line 13565, in <module>
        (party_set_marshall, ":eek:ld_marshall_party", 0),
    NameError: name 'party_set_marshall' is not defined
    Exporting quest data...
    Exporting info_page data...
    Traceback (most recent call last):
      File "process_scripts.py", line 4, in <module>
        from module_scripts import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\module_scripts.py", line 19840, in <module>
        (party_set_marshall, ":eek:ld_marshall_party", 0),
    NameError: name 'party_set_marshall' is not defined
    Traceback (most recent call last):
      File "process_mission_tmps.py", line 8, in <module>
        from process_operations import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\process_operations.py", line 20, in <module>
        from module_scripts import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\module_scripts.py", line 19840, in <module>
        (party_set_marshall, ":eek:ld_marshall_party", 0),
    NameError: name 'party_set_marshall' is not defined
    Traceback (most recent call last):
      File "process_game_menus.py", line 5, in <module>
        from module_game_menus import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\module_game_menus.py", line 13565, in <module>
        (party_set_marshall, ":eek:ld_marshall_party", 0),
    NameError: name 'party_set_marshall' is not defined
    Traceback (most recent call last):
      File "process_simple_triggers.py", line 5, in <module>
        from process_operations import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\process_operations.py", line 20, in <module>
        from module_scripts import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\module_scripts.py", line 19840, in <module>
        (party_set_marshall, ":eek:ld_marshall_party", 0),
    NameError: name 'party_set_marshall' is not defined
    Traceback (most recent call last):
      File "process_dialogs.py", line 6, in <module>
        from module_dialogs import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\module_dialogs.py", line 10745, in <module>
        (party_set_marshall, ":eek:ld_marshall_party", 0),
    NameError: name 'party_set_marshall' is not defined
    Traceback (most recent call last):
      File "process_global_variables_unused.py", line 3, in <module>
        from process_operations import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\process_operations.py", line 20, in <module>
        from module_scripts import *
      File "C:\Users\CGrimes\Desktop\M&B\mb_warband_module_system_1165\Module_system
    1.165\module_scripts.py", line 19840, in <module>
        (party_set_marshall, ":eek:ld_marshall_party", 0),
    NameError: name 'party_set_marshall' is not defined
    Exporting postfx_params...

    ______________________________

    Script processing has ended.
    Press any key to exit. . .

    I tried doing various searches for the part set marshall problem (since that seems to be the main issue in all the errors) but I couldn't find anything. I have no idea what I have done wrong so I was hoping that someone could provide me with some sort of insight as to how to fix this problem. Thank you very much for your time.
后退
顶部 底部