Module system module_game_menu not compiling.

Users who are viewing this thread

i do not know why it is not compiling and i need to to because my custom menu is not appearing,

also when i open build_module it brings down a list of "Python is not know as an internal or external command"
 
That's because you haven't configured Python correctly to work with the module system, which is why your changes aren't showing up, since they were never compiled in the first place. Re-do your path env var or just do it locally from within the batch file.
 
Now when i run the batch file it gives me this error:

SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
  File "process_global_variables.py", line 4, in <module>
    from module_info import *
  File "C:\Program Files (x86)\Mount&Blade Warband\Modules\Module_system 1.153\module_info.py", line 5
    export_dir = "C:\Program Files (x86)\Mount&Blade Warband\Modules\newmod\"
 
Tomis13lack said:
Now when i run the batch file it gives me this error:

SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
  File "process_global_variables.py", line 4, in <module>
    from module_info import *
  File "C:\Program Files (x86)\Mount&Blade Warband\Modules\Module_system 1.153\module_info.py", line 5
    export_dir = "C:\Program Files (x86)\Mount&Blade Warband\Modules\newmod\"

export_dir is wrong.

should be;

export_dir = "C:/Program Files (x86)/Mount&Blade Warband/Modules/newmod/"

like that.
 
same error

SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
  File "process_global_variables.py", line 4, in <module>
    from module_info import *
  File "C:\Program Files (x86)\Mount&Blade Warband\Modules\Module_system 1.153\module_info.py", line 5
    export_dir = "C:/Program Files (x86)/Mount&Blade Warband/modules/newmod/"
 
Tomis13lack said:
same error

SyntaxError: EOL while scanning string literal
Traceback (most recent call last):
  File "process_global_variables.py", line 4, in <module>
    from module_info import *
  File "C:\Program Files (x86)\Mount&Blade Warband\Modules\Module_system 1.153\module_info.py", line 5
    export_dir = "C:/Program Files (x86)/Mount&Blade Warband/modules/newmod/"

"SyntaxError: EOL while scanning string literal"

What is that ?(about strings ? ) Im seeing first time.

But, export dir is must be like my sentence.
 
export_dir = "C:/Program Files (x86)/Steam/SteamApps/common/MountBlade Warband/Modules/Star Kingdoms"

this is my exportdir which works, just change star kingdoms with your mod name
 
Back
Top Bottom