搜索结果: *

  1. Modding Q&A [For Quick Questions and Answers]

    Ah thank you I'll go back and add the lines! Any advice on using open brf, brf files, and specifically the banner textures, as I know I messed up with that stuff
  2. Modding Q&A [For Quick Questions and Answers]

    alright so I was using the cartographer and? for some reason it whipped around all of the factions positions and put some on the water lol. I wonder what I did wrong because I don't know? Just go to my backup i guess? And I get some compiling errors(surprisingly ) just for a new kingdoms banners, which I could'nt seem to follow the instructions very well(im dumb) especially early on around the textures and dds files and crap(i dont get it :sad: ) from this guy here https://forums.taleworlds.com/index.php?topic=334271.0
    . i'm pretty sure its mostly me not understanding brf crap and texture crap :sad: I know I can go back and fix my errors, when they have to do with mistakes, but some of the brf part of the tutorial i know i screwed up with...i'm just gonna keep trying, if you have advice shoot, i'm a scrub. Will post the errors if ya want but it doesn't seem to be anything mystic lol

    EDIT:
    Uh ok so it says multiple times across a number of files from process_operations import * ? but that something is wrong with it i guess. And damn I need to go back and hunt for my mistakes because the other error im getting is that 

    File "C:\Users\Westhebest\Desktop\Module_system 1.171\process_operations.py", line 20, in <module>
        from module_scripts import *
      File "C:\Users\Westhebest\Desktop\Module_system 1.171\module_scripts.py", line 454, in <module>
        (store_add, ":kingdom_7_banners_begin", banner_scene_props_begin, kingdom_7_banners_begin_offset),
    NameError: name 'kingdom_7_banners_begin_offset' is not defined
    Yea I know I hecked up but I thought i'm not sure what I did wrong. I also might need some help with dds crap and the initial creation of a factions banners and such, because I don't know how to really do that...I mean, i tried following instructions lol
  3. Modding Q&A [For Quick Questions and Answers]

    Thank you so much Kalarhan!!! 
    Initializing...
    Compiling all global variables...
    Exporting strings...
    Exporting skills...
    Exporting tracks...
    Exporting animations...
    Exporting meshes...
    Exporting sounds...
    Exporting skins...
    Exporting map icons...
    Creating new tag_uses.txt file...
    Creating new quick_strings.txt file...
    Exporting faction data...
    Exporting item data...
    Exporting scene data...
    Exporting troops data
    Exporting particle data...
    Exporting scene props...
    Exporting tableau materials data...
    Exporting presentations...
    Exporting party_template data...
    Exporting parties
    Exporting quest data...
    Exporting info_page data...
    Exporting scripts...
    Exporting mission_template data...
    Exporting game menus data...
    exporting simple triggers...
    exporting triggers...
    exporting dialogs...
    Checking global variable usages...
    Exporting postfx_params...

    ______________________________

    Script processing has ended.
    Press any key to exit. . .
    You'll be seeing a lot more of me from now on :grin: Because I have no clue what i'm doing :grin:
  4. Modding Q&A [For Quick Questions and Answers]

    Hello friends, Macian Knight here, i've been a long time m&b fan and just decided to have a go at learning to mod. Problem? I stopped before I ever started! I cannot for the life of me properly set up the modsys, path and python i guess. I know you've all seen this sort of error, as have I because I just spent the last four hours(which isn't my proudest moment) trying to figure just how to make the hellish things work, you know? I've browsed the forums and seen some fixes that work for some, and some that don't, and well at this point i'm not trying to waste more time on such a little tiny thing :sad: heres the usual junk,
    set up my path correctly, Was in progfiles86 but moved it to progfiles, copy of native in new mod folder, and it's all gucci in environ variables, ;C:\Python27 and all that. I've tried all the advice that i've found, giving permissions to certain folders, moving some things around, though there isn't much more that i've seen, and none of it is working for me. Latest m&b wb, modsys... Still getting this Initializing...
    variables.txt not found. Creating new variables.txt file
    Compiling all global variables...
    Traceback (most recent call last):
      File "process_global_variables.py", line 106, in <module>
        save_variables(export_dir, variables,variable_uses)
      File "C:\Module_system 1.171\process_operations.py", line 171, in save_variables
        file = open(export_dir + "variables.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/variables.txt'
    Exporting strings...
    Traceback (most recent call last):
      File "process_strings.py", line 26, in <module>
        save_strings(strings)
      File "process_strings.py", line 9, in save_strings
        ofile = open(export_dir + "strings.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/strings.txt'
    Exporting skills...
    Traceback (most recent call last):
      File "process_skills.py", line 32, in <module>
        save_skills()
      File "process_skills.py", line 15, in save_skills
        ofile = open(export_dir + "skills.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/skills.txt'
    Exporting tracks...
    Traceback (most recent call last):
      File "process_music.py", line 23, in <module>
        save_tracks()
      File "process_music.py", line 15, in save_tracks
        file = open(export_dir + "music.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/music.txt'
    Exporting animations...
    Traceback (most recent call last):
      File "process_animations.py", line 61, in <module>
        write_actions(animations,len(action_codes),action_codes,"actions.txt")
      File "process_animations.py", line 24, in write_actions
        file = open(export_dir + file_name,"w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/actions.txt'
    Exporting meshes...
    Traceback (most recent call last):
      File "process_meshes.py", line 25, in <module>
        save_meshes()
      File "process_meshes.py", line 9, in save_meshes
        ofile = open(export_dir + "meshes.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/meshes.txt'
    Exporting sounds...
    Traceback (most recent call last):
      File "process_sounds.py", line 51, in <module>
        write_sounds(sound_samples, sounds)
      File "process_sounds.py", line 13, in write_sounds
        ofile = open(export_dir + "sounds.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/sounds.txt'
    Exporting skins...
    Traceback (most recent call last):
      File "process_skins.py", line 105, in <module>
        export_skins(skins)
      File "process_skins.py", line 45, in export_skins
        ofile = open(export_dir + "skins.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/skins.txt'
    Exporting map icons...
    Traceback (most recent call last):
      File "process_map_icons.py", line 38, in <module>
        save_map_icons(variables,variable_uses,tag_uses,quick_strings)
      File "process_map_icons.py", line 9, in save_map_icons
        ofile = open(export_dir + "map_icons.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/map_icons.txt'
    Exporting faction data...
    Traceback (most recent call last):
      File "process_factions.py", line 70, in <module>
        save_factions(relations)
      File "process_factions.py", line 34, in save_factions
        file = open(export_dir + "factions.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/factions.txt'
    Exporting item data...
    Traceback (most recent call last):
      File "process_items.py", line 72, in <module>
        write_items(variables,variable_uses,tag_uses,quick_strings)
      File "process_items.py", line 19, in write_items
        ofile = open(itemkinds_file_name,"w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/item_kinds1.txt'
    Exporting scene data...
    Traceback (most recent call last):
      File "process_scenes.py", line 77, in <module>
        save_scenes(variables,variable_uses,tag_uses)
      File "process_scenes.py", line 46, in save_scenes
        ofile = open(export_dir + "scenes.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/scenes.txt'
    Exporting troops data
    Traceback (most recent call last):
      File "process_troops.py", line 107, in <module>
        save_troops()
      File "process_troops.py", line 13, in save_troops
        file = open(export_dir + "troops.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/troops.txt'
    Exporting particle data...
    Traceback (most recent call last):
      File "process_particle_sys.py", line 61, in <module>
        save_particle_systems()
      File "process_particle_sys.py", line 29, in save_particle_systems
        ofile = open(export_dir + "particle_systems.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/particle_systems.txt'
    Exporting scene props...
    Traceback (most recent call last):
      File "process_scene_props.py", line 32, in <module>
        save_scene_props(variables,variable_uses,tag_uses,quick_strings)
      File "process_scene_props.py", line 10, in save_scene_props
        ofile = open(export_dir + "scene_props.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/scene_props.txt'
    Exporting tableau materials data...
    Traceback (most recent call last):
      File "process_tableau_materials.py", line 31, in <module>
        save_tableau_materials(variables,variable_uses,tag_uses,quick_strings)
      File "process_tableau_materials.py", line 11, in save_tableau_materials
        ofile = open(export_dir + "tableau_materials.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/tableau_materials.txt'
    Exporting presentations...
    Traceback (most recent call last):
      File "process_presentations.py", line 33, in <module>
        save_presentations(variables,variable_uses,tag_uses,quick_strings)
      File "process_presentations.py", line 11, in save_presentations
        ofile = open(export_dir + "presentations.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/presentations.txt'
    Exporting party_template data...
    Traceback (most recent call last):
      File "process_party_tmps.py", line 46, in <module>
        save_party_templates()
      File "process_party_tmps.py", line 20, in save_party_templates
        file = open(export_dir + "party_templates.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/party_templates.txt'
    Exporting parties
    Traceback (most recent call last):
      File "process_parties.py", line 69, in <module>
        save_parties(parties)
      File "process_parties.py", line 12, in save_parties
        file = open(export_dir + "parties.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/parties.txt'
    Exporting quest data...
    Traceback (most recent call last):
      File "process_quests.py", line 30, in <module>
        save_quests()
      File "process_quests.py", line 9, in save_quests
        ofile = open(export_dir + "quests.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/quests.txt'
    Exporting scripts...
    Traceback (most recent call last):
      File "process_scripts.py", line 40, in <module>
        save_scripts(variables,variable_uses,scripts,tag_uses,quick_strings)
      File "process_scripts.py", line 10, in save_scripts
        file = open(export_dir + "scripts.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/scripts.txt'
    Exporting mission_template data...
    Traceback (most recent call last):
      File "process_mission_tmps.py", line 64, in <module>
        save_mission_templates(variables,variable_uses,tag_uses,quick_strings)
      File "process_mission_tmps.py", line 38, in save_mission_templates
        file = open(export_dir + "mission_templates.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/mission_templates.txt'
    Exporting game menus data...
    Traceback (most recent call last):
      File "process_game_menus.py", line 47, in <module>
        save_game_menus(variables,variable_uses,tag_uses,quick_strings)
      File "process_game_menus.py", line 22, in save_game_menus
        ofile = open(export_dir + "menus.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/menus.txt'
    exporting simple triggers...
    Traceback (most recent call last):
      File "process_simple_triggers.py", line 24, in <module>
        save_simple_triggers(variables,variable_uses,simple_triggers,tag_uses,quick_strings)
      File "process_simple_triggers.py", line 8, in save_simple_triggers
        file = open(export_dir + "simple_triggers.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/simple_triggers.txt'
    exporting triggers...
    Traceback (most recent call last):
      File "process_dialogs.py", line 199, in <module>
        save_triggers(variables,variable_uses,triggers,tag_uses,quick_strings)
      File "process_dialogs.py", line 47, in save_triggers
        file = open(export_dir + "triggers.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files/Mount&Blade Warband/Modules/Kingdom/triggers.txt'
    Checking global variable usages...

    ______________________________

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


    Which?? I don't get as variables is literally right there, and it should have permissions for all?  And this when I try and admin open
    python: can't open file 'process_init.py': [Errno 2] No such file or directory
    python: can't open file 'process_global_variables.py': [Errno 2] No such file or directory
    python: can't open file 'process_strings.py': [Errno 2] No such file or directory
    python: can't open file 'process_skills.py': [Errno 2] No such file or directory
    python: can't open file 'process_music.py': [Errno 2] No such file or directory
    python: can't open file 'process_animations.py': [Errno 2] No such file or directory
    python: can't open file 'process_meshes.py': [Errno 2] No such file or directory
    python: can't open file 'process_sounds.py': [Errno 2] No such file or directory
    python: can't open file 'process_skins.py': [Errno 2] No such file or directory
    python: can't open file 'process_map_icons.py': [Errno 2] No such file or directory
    python: can't open file 'process_factions.py': [Errno 2] No such file or directory
    python: can't open file 'process_items.py': [Errno 2] No such file or directory
    python: can't open file 'process_scenes.py': [Errno 2] No such file or directory
    python: can't open file 'process_troops.py': [Errno 2] No such file or directory
    python: can't open file 'process_particle_sys.py': [Errno 2] No such file or directory
    python: can't open file 'process_scene_props.py': [Errno 2] No such file or directory
    python: can't open file 'process_tableau_materials.py': [Errno 2] No such file or directory
    python: can't open file 'process_presentations.py': [Errno 2] No such file or directory
    python: can't open file 'process_party_tmps.py': [Errno 2] No such file or directory
    python: can't open file 'process_parties.py': [Errno 2] No such file or directory
    python: can't open file 'process_quests.py': [Errno 2] No such file or directory
    python: can't open file 'process_scripts.py': [Errno 2] No such file or directory
    python: can't open file 'process_mission_tmps.py': [Errno 2] No such file or directory
    python: can't open file 'process_game_menus.py': [Errno 2] No such file or directory
    python: can't open file 'process_simple_triggers.py': [Errno 2] No such file or directory
    python: can't open file 'process_dialogs.py': [Errno 2] No such file or directory
    python: can't open file 'process_global_variables_unused.py': [Errno 2] No such file or directory
    Could Not Find C:\WINDOWS\system32\*.pyc

    ______________________________

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

    Anywho thats the extent of my problems, I know ya'll will probably look down upon me for knowingly asking a question asked hundreds of times, but i don't know what else to do. None of the "fixes" or advice I came across helped or changed my error messages. So...theres that. But hey, if this gets solved you'll be seeing a lot more of my scrub self :grin:

    Also, should I have left my comments out and just put the long error msgs in spoilers? And No I didn't modify anything besides module info btw
后退
顶部 底部