搜索结果: *

  1. Arisilde

    New Version of Map Editor

    if i knew how to program that would be my first project, lol  :wink:
  2. Arisilde

    New Version of Map Editor

    Is anyone by chance working on a new map editor or heard of an official one being released? The current one is just so buggy... I'm starting to get tired of losing my work because it crashes so often. It doesn't even reliably display the correct coordinates of the mouse pointer when you press z...
  3. Arisilde

    Questions textures MapEditor

    wow... i have no idea what that means. i'm a complete noob when it comes to graphics.
  4. Arisilde

    Post your desktop!:D

    mine

    desktop.jpg
  5. Arisilde

    Questions textures MapEditor

    GetAssista 说:
    2. mountain.dds has alpha channel. Make it all white to switch off snow completely

    how do you do this?
  6. Arisilde

    A few questions about maps

    1. i never put snow on top of them but somehow when i play the mod there's snow covering most of mountains. it looks pretty weird sitting next to desert. is that possibly a function of the graphical enhancement mod? i do have that installed. in editor the mountains only have rock on them. the snow is quite annoying.

    2. shame you have to replace textures to get new ones, but ok.

    5. the + - only cycles between map icons for me. it doesn't resize. i'll look into the map_icons.txt as see what i can do.

    thanks to both of you for the answers.
  7. Arisilde

    A few questions about maps

    Search is apparently not my friend. Can you help me where it wasn't able to? 1. Is it possible to make the maps not automatically add snow to the tops of mountains? 2. How exactly do you add new textures to the editor? 3. How do you add new map objects to the editor? 4. Can you make objects...
  8. Arisilde

    Need help with map size

    GetAssista 说:
    Edit editor.cfg for new map properties, generate new map, save and start from there.
  9. Arisilde

    A few yes/no questions

    Ok, so I'm new to M&B modding. I have no exp with scripting, so rather than jump right in I'd like to gen a general idea of what can be done with this game before I invest a lot of time trying to learn the scripting language. Otherwise I may just stick to mapping and possibly try my hand at...
  10. Arisilde

    Internal scenes

    It would be cool to have more support for internal scenes. caves and such. it would be neat to take quests to venture down into some cave network  to route out a bandit hideout, search for ancient relics, etc. I realize that doesn't really fit in with the big battle theme a lot of people go for...
  11. Arisilde

    Python syntax error?

    that was the problem. thank you.
  12. Arisilde

    Python syntax error?

    i'm not sure what you mean. i did add C:\Python26\; into the PATH variable in system variables. thats the only way i could get it to run even this much. is there something else i'm supposed to do?
  13. Arisilde

    Python syntax error?

    thanks crisis. that got me one step farther. now i'm just getting an error that the files can't be found.
    Initializing...
    Compiling all global variables...
    Traceback (most recent call last):
      File "process_global_variables.py", line 89, in <module>
        save_variables(export_dir, variables,variable_uses)
      File "C:\Program Files (x86)\Mount&Blade\ModuleSystem\process_operations.py",
    line 171, in save_variables
        file = open(export_dir + "variables.txt","w")
    IOError: [Errno 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/Native/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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/Native/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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/Native/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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/Native/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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/Native/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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/Native/meshes.txt'
    Exporting sounds...
    Traceback (most recent call last):
      File "process_sounds.py", line 49, 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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/Native/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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/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 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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/Native/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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/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 65, 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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/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 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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/Native/scenes.txt'
    Exporting troops data
    Traceback (most recent call last):
      File "process_troops.py", line 105, in <module>
        save_troops()
      File "process_troops.py", line 13, in save_troops
        file = open(export_dir + "troops.txt","w")
    IOError: [Errno 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/Native/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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/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 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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/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 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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/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 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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/Native/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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/Native/party_templates.txt'
    Exporting parties
    Creating new tag_uses.txt file...
    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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/Native/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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/Native/quests.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 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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/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 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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/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 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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/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 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 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/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 188, in <module>
        save_triggers(variables,variable_uses,triggers,tag_uses,quick_strings)
      File "process_dialogs.py", line 46, in save_triggers
        file = open(export_dir + "triggers.txt","w")
    IOError: [Errno 2] No such file or directory: 'C:/Program Files/Mount&Blade/Modu
    les/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

    ______________________________

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

    whats the problem i'm having?
  14. Arisilde

    Python syntax error?

    Hi. I got the 1.010 module toolset and tried to install python 3.0 but ended up with the python not recognized error. I did the adding C:\Python30\ in system variables fix, but i just ended up with a new error. build_module.bat would run but i got nothing but syntax errors for each file and...
后退
顶部 底部