Modsys not working properly

Users who are viewing this thread

Hello everyone... I was about to make a new fresh module system in order to create a mod. After I set up the path on module_info.py, I clicked on build_module.bat. Instead of getting a new mod on a folder I created, I get a bizzare error that I have never seen before. My old modsys also doesn't work anymore... Really not sure what is causing this.

File "process_init.py", line 5
print "Initializing..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_global_variables.py", line 23
add_variable(varb, variable_list, variable_uses)
^
TabError: inconsistent use of tabs and spaces in indentation
File "process_strings.py", line 24
print "Exporting strings..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_skills.py", line 30
print "Exporting skills..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_music.py", line 21
print "Exporting tracks..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_animations.py", line 58
print "Exporting animations..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_meshes.py", line 23
print "Exporting meshes..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_sounds.py", line 49
print "Exporting sounds..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_skins.py", line 104
print "Exporting skins..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_map_icons.py", line 32
print "Exporting map icons..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_factions.py", line 27
print "ERROR faction not found: "+ rel_name
^
SyntaxError: Missing parentheses in call to 'print'
File "process_items.py", line 60
print "Exporting item data..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_scenes.py", line 12
print "Exporting scene data..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_troops.py", line 104
print "Exporting troops data"
^
SyntaxError: Missing parentheses in call to 'print'
File "process_particle_sys.py", line 60
print "Exporting particle data..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_scene_props.py", line 26
print "Exporting scene props..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_tableau_materials.py", line 25
print "Exporting tableau materials data..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_presentations.py", line 27
print "Exporting presentations..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_party_tmps.py", line 28
print "Error! NUMBER OF TEMPLATE MEMBERS EXCEEDS 6 " + party_template[0]
^
SyntaxError: Missing parentheses in call to 'print'
File "process_parties.py", line 28
print "Error: Unable to find menu-id :" + menu_param
^
SyntaxError: Missing parentheses in call to 'print'
File "process_quests.py", line 29
print "Exporting quest data..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_info_pages.py", line 25
print "Exporting info_page data..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_scripts.py", line 34
print "Exporting scripts..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_mission_tmps.py", line 29
print "ERROR: Too many item_overrides!"
^
SyntaxError: Missing parentheses in call to 'print'
File "process_game_menus.py", line 41
print "Exporting game menus data..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_simple_triggers.py", line 19
print "exporting simple triggers..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_dialogs.py", line 95
print sentence[ipt_token_pos]
^
SyntaxError: Missing parentheses in call to 'print'
File "process_global_variables_unused.py", line 6
print "Checking global variable usages..."
^
SyntaxError: Missing parentheses in call to 'print'
File "process_postfx.py", line 26
print "Exporting postfx_params..."
^
SyntaxError: Missing parentheses in call to 'print'
Could Not Find E:\Legacy of Romaroth\Module_system 1.171\*.pyc
 
Solution
Did you download a new version of the Native Module System and try to compile that one or did you use an old Module System? At a newly downloaded Module System at which you have changed nothing (except the path) such an error should not appear. Make also sure that you are using a Pyhton 2.x version, not Python 3.x.
Did you download a new version of the Native Module System and try to compile that one or did you use an old Module System? At a newly downloaded Module System at which you have changed nothing (except the path) such an error should not appear. Make also sure that you are using a Pyhton 2.x version, not Python 3.x.
 
Upvote 0
Solution
Did you download a new version of the Native Module System and try to compile that one or did you use an old Module System? At a newly downloaded Module System at which you have changed nothing (except the path) such an error should not appear. Make also sure that you are using a Pyhton 2.x version, not Python 3.x.
I don't have a newest version of modsys. Can you send me the download link, because I can't seem to find it...
 
Upvote 0
Well, it seems like I was using the newest version of the module system and the problem is persisting. Python probably updated though, so that might be the cause of the issue.
 
Upvote 0
Back
Top Bottom