Search results for query: *

  1. dpjsdm

    Some change's I'd like to propose

    -A clear UI with a decent contrast would be WAY better than the current one. Current version's text is hardly readable IMO and it should be changed A dark grey background with some modern font would actually look nice -Also, there are some left over weapons from the original mount and blade...
  2. dpjsdm

    How do I edit the loading screens ?

    I've got my module system, now how do I edit the loading screens. I've searched the entire forum, nothing came up :(
  3. dpjsdm

    Are there even zombie mods for Warband ?

    kabogh said:
    dpjsdm said:
    kabogh said:
    I heard that XPearse is porting his mod to Warband.

    Know any mods that exist right now ?
    Here:
    http://www.moddb.com/mods/hotd-warband

    Thanks, btw can someone tell me how to edit the loading screens ?
  4. dpjsdm

    My multiplayer faction doesn't come up ingame

    EDIT - NVM FIXED IT Forgot the slash in module_info.py Anyway how do I replace the loading screens ?
  5. dpjsdm

    I don't see my changes in the game

    Quintillius said:
    # Point export_dir to the folder you will be keeping your module
    # Make sure you use forward slashes (/) and NOT backward slashes (/)

    export_dir = "C:/Program Files (x86)/Mount&Blade - Warband/Modules/WarbandAR/"
    #export_dir = "C:/Program Files/Mount&Blade/Modules/Native/"

    Thanks !
  6. dpjsdm

    I don't see my changes in the game

    Quintillius said:
    Can you post the content of module_info.py?

    # Point export_dir to the folder you will be keeping your module
    # Make sure you use forward slashes (/) and NOT backward slashes (/)

    export_dir = "C:/Program Files (x86)/Mount&Blade - Warband/Modules/WarbandAR"
    #export_dir = "C:/Program Files/Mount&Blade/Modules/Native/"
  7. dpjsdm

    I don't see my changes in the game

    Ok I just tried to compile using an unmodified native copy, an unmodified module system and I got errors...

    TL;DR For the Spoiler - I keep getting Error 13
    Initializing...
    variables.txt not found. Creating new variables.txt file
    Compiling all global variables...
    variables.txt not found. Creating new variables.txt file
    variable_uses.txt not found. Creating new variable_uses.txt file
    Traceback (most recent call last):
      File "process_global_variables.py", line 106, in <module>
        save_variables(export_dir, variables,variable_uses)
      File "C:\Users\Joshua\Desktop\WarbandAR Module\process_operations.py", line 17
    1, in save_variables
        file = open(export_dir + "variables.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files (x86)/Warband/Modules/W
    arbandARvariables.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 (x86)/Warband/Modules/W
    arbandARstrings.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 (x86)/Warband/Modules/W
    arbandARskills.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 (x86)/Warband/Modules/W
    arbandARmusic.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 (x86)/Warband/Modules/W
    arbandARactions.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 (x86)/Warband/Modules/W
    arbandARmeshes.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 (x86)/Warband/Modules/W
    arbandARsounds.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 (x86)/Warband/Modules/W
    arbandARskins.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 13] Permission denied: 'C:/Program Files (x86)/Warband/Modules/W
    arbandARmap_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 (x86)/Warband/Modules/W
    arbandARfactions.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 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 (x86)/Warband/Modules/W
    arbandARitem_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 13] Permission denied: 'C:/Program Files (x86)/Warband/Modules/W
    arbandARscenes.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 (x86)/Warband/Modules/W
    arbandARtroops.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 (x86)/Warband/Modules/W
    arbandARparticle_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 13] Permission denied: 'C:/Program Files (x86)/Warband/Modules/W
    arbandARscene_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 13] Permission denied: 'C:/Program Files (x86)/Warband/Modules/W
    arbandARtableau_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 13] Permission denied: 'C:/Program Files (x86)/Warband/Modules/W
    arbandARpresentations.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 (x86)/Warband/Modules/W
    arbandARparty_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 13] Permission denied: 'C:/Program Files (x86)/Warband/Modules/W
    arbandARparties.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 (x86)/Warband/Modules/W
    arbandARquests.txt'
    Exporting info_page data...
    Traceback (most recent call last):
      File "process_info_pages.py", line 26, in <module>
        save_info_pages()
      File "process_info_pages.py", line 9, in save_info_pages
        ofile = open(export_dir + "info_pages.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files (x86)/Warband/Modules/W
    arbandARinfo_pages.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 13] Permission denied: 'C:/Program Files (x86)/Warband/Modules/W
    arbandARscripts.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 13] Permission denied: 'C:/Program Files (x86)/Warband/Modules/W
    arbandARmission_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 13] Permission denied: 'C:/Program Files (x86)/Warband/Modules/W
    arbandARmenus.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 13] Permission denied: 'C:/Program Files (x86)/Warband/Modules/W
    arbandARsimple_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 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 (x86)/Warband/Modules/W
    arbandARtriggers.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
    Exporting postfx_params...
    Traceback (most recent call last):
      File "process_postfx.py", line 27, in <module>
        write_postfx_params(postfx_params)
      File "process_postfx.py", line 13, in write_postfx_params
        ofile = open(export_dir + "postfx.txt","w")
    IOError: [Errno 13] Permission denied: 'C:/Program Files (x86)/Warband/Modules/W
    arbandARpostfx.txt'

    ______________________________

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

    I don't see my changes in the game

    Quintillius said:
    Looks like your Python is not working.
    Chapter 1.2 will be interesting for you:

    http://forums.taleworlds.com/index.php/topic,5408.0.html

    Python works correctly.

    Swyter said:
    dpjsdm said:
    After I made my changes in the module system, I press build_module and I get this error

    'process_init.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_global_variables.py' is not recognized as an internal or external comma
    nd,
    operable program or batch file.
    'process_strings.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_skills.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_music.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_animations.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_meshes.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_sounds.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_skins.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_map_icons.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_factions.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_items.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_scenes.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_troops.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_particle_sys.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_scene_props.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_tableau_materials.py' is not recognized as an internal or external comm
    and,
    operable program or batch file.
    'process_presentations.py' is not recognized as an internal or external command,

    operable program or batch file.
    'process_party_tmps.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_parties.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_quests.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_info_pages.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_scripts.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_mission_tmps.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_game_menus.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_simple_triggers.py' is not recognized as an internal or external comman
    d,
    operable program or batch file.
    'process_dialogs.py' is not recognized as an internal or external command,
    operable program or batch file.
    'process_global_variables_unused.py' is not recognized as an internal or externa
    l command,
    operable program or batch file.
    'process_postfx.py' is not recognized as an internal or external command,
    operable program or batch file.
    Could Not Find C:\Windows\system32\*.pyc

    ______________________________

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

    Then someone told me that its supposed to look like that

    But when I open Warband, the game still shows the original.

    First of all. Read the Introductory guide to get the basics. Don't run the batch file from the cmd prompt at your system directory, that's kind of dangerous if you don't know what you're doing.


    Basically you need to download and install Python 2.7, Notepad++ and then just copy the
    Code:
    Native
    folder under
    Code:
    <M&B root>/Modules
    . Rename it to something and modify the
    Code:
    module_info.py
    accordingly (i.e. pointing your new mod where the resulting
    Code:
    txt
    of the build will be saved and read by the game). Or download my ready-to-enjoy
    Code:
    swysdk
    for a more polished experience (tm).

    Tried yours, quite easier, but now I get the system cannot find the path specified.

    EDIT : NVM Fixed the cannot find the path problem, now I got this

    Untitled.png
  9. dpjsdm

    I don't see my changes in the game

    After I made my changes in the module system, I press build_module and I get this error Then someone told me that its supposed to look like that But when I open Warband, the game still shows the original.
  10. dpjsdm

    Are there even zombie mods for Warband ?

    kabogh said:
    I heard that XPearse is porting his mod to Warband.

    Know any mods that exist right now ?
  11. dpjsdm

    MP Apocalypse [WB] ZOMBIEEE (Invasion) We Need Your Advice

    Can someone help me, for some reason, the host's weapons don't have sound and visual effects, just arrow launching.
  12. dpjsdm

    Are there even zombie mods for Warband ?

    Sir_Don_Quixote said:
    Good luck for you, a very very experienced coder is making a complete zombie/survival game. The alpha will be released soon, all he needs to do is scenes. He has done many coding milestones by himself. I can't wait to play. The thread is in my link picture down below (La Grandmasters Pic) in which it will direct you to the main thread. There you'll see what hes done so far. Though he hasn't updated it in a bit so look through the different pages and you'll see many things hes adding or considered maybe adding. If you want to hurry up the speed download the newest scening pack and make one for yourself!

    Oh you :3
  13. dpjsdm

    Is it possible to do this ? If so, how ?

    Suppose I start with a module, can I add another faction to it ? Just unarmed peasants like the ones in Native. Or copy one from another module, with permission.
  14. dpjsdm

    Are there even zombie mods for Warband ?

    I'm looking for some, preferably something where you try to survive.
Back
Top Bottom