Recent content by pino69

  1. pino69

    To force player to visit locations

    Hello Ibidil, I tried the last version of Brytenwalda and have to say that's one of the best mod ever (and it has been translated in french so thanks !). I can see the enormous work you did to create all those towns, villages and other localities. The problem is at a moment, you just click on a...
  2. pino69

    Native LSP 3D Art Fred's bunch 'o armours (now with more stuff)

    Very beautiful work. I'm trying to use it in my mod.
    But I've got some problems making the files work under OpenBRF. Majority of the models leads to blue/white textures.
    Any idea to make it work under OpenBRF ?

    Thanks 4 the answers.
  3. pino69

    Modding Q&A [For Quick Questions and Answers]

    1. Add your brf in module ini
    2. Verify you loaded all the textures in the brf (important)
    3. Verify allocation of textures in the brf
    4. verify textures are in the Texture folder of your mod.
  4. pino69

    Modding Q&A [For Quick Questions and Answers]

    Somebody said:
    slot_troop_payment_request in script_initialize_npcs

    Hello,

    I can't find script_initialize_npcs.
    In which module_* is it please ?

    Thanks
  5. pino69

    Modding Q&A [For Quick Questions and Answers]

    Hello,

    How can I link a mercenary troop to specific towns ?
    I.E I would like mercenary Kazaks appear only in Reyvadin and Tulga for example...

    Thanks for the answers.
  6. pino69

    Being knocked off your horse

    Hello,

    I'm interested by that piece of code for my mod.
    Is it usable as it or do I have to wait for debug ?
    If understand correctly, I have to add the script in the module_script.py. But after, I have to add something to module_mission_template and I can't figure what and where.

    Can anybody give more explanations please ?
  7. pino69

    OSP Code SP 1 vs 1 Tournament

    Dunde,

    Aside modifications in tournament_*.py files, could you please indicate which *.py files you modified ?
    And, could you tell me how I could make so the participants wear a different equipment than the standard one.

    Thanks.
  8. pino69

    Modding Q&A [For Quick Questions and Answers]

    Hello,

    1/ How to make tournament partcipants use real stuff (armors an weapons) ?
    2/ In 1257AD, they use corn sounds to accompany orders in battle. How can I do to make it into may mod ?

    Thanks for the answers
  9. pino69

    Modding Q&A [For Quick Questions and Answers]

    That's it Barabas, Thanks !
  10. pino69

    Modding Q&A [For Quick Questions and Answers]

    pino69 said:
    Hello,

    Using Diplo 4.1 + PBOD 0.9 module system.
    I'm unable to delete the "Go to the marketplace" entry in the Town menu. When using (eq,1,0) just before the entry, module refuses to compile.
    I guess there's something to do with automatic selling and automatic buy food somewhere.

    Any idea to help ?

    Thanks for the answer.


    Somebody,

    ("town_merchant",
          [(party_slot_eq,"$current_town",slot_party_type, spt_town),
              (eq, 1, 0),
              (eq,"$town_nighttime",0),
              (this_or_next|eq,"$entry_to_town_forbidden",0),
              (eq, "$sneaked_into_town",1),
    #          (party_get_slot, ":scene", "$current_town", slot_town_store),
    #          (scene_slot_eq, ":scene", slot_scene_visited, 1), #check if scene has been visited before to allow entry from menu. Otherwise scene will only be accessible from the town center.
              (eq, 1, 0)],

    This works

          ("trade_with_merchants",
          [
              (party_slot_eq,"$current_town",slot_party_type, spt_town)
            (eq,1,0)],
            "Go to the marketplace.",
            [
              (try_begin),
                (call_script, "script_cf_enter_center_location_bandit_check"),
              (else_try),
                (jump_to_menu,"mnu_town_trade"),
              (try_end),
              ]),

    This doesn't work. Compilation failed.

    Tell me why ?

    Diplo 4.1 + PBOD 0.9 module system.
  11. pino69

    Modding Q&A [For Quick Questions and Answers]

    Hello,

    Using Diplo 4.1 + PBOD 0.9 module system.
    I'm unable to delete the "Go to the marketplace" entry in the Town menu. When using (eq,1,0) just before the entry, module refuses to compile.
    I guess there's something to do with automatic selling and automatic buy food somewhere.

    Any idea to help ?

    Thanks for the answer.
  12. pino69

    OSP Code SP 1 vs 1 Tournament

    Hello,

    I'd like to use your minimpd in my mod but I just can't see the code you added or modified.
    Could you please comment your modifs because I don't want to rebuuilt my entire mod which contains a lot of previous modifications.

    Thanks
  13. pino69

    OSP Code SP [WB v1.127] Expanded nobility title system kit (v0.3.3)

    Hello Jrider,

    Can you tell me exactly where to put your code in module_constants.py AND in module_triggers.py?
    Because I've got a lot of errors when compiling : it's varables related...
    And is your code 1.146 compatible ?

    Thanks for your answer
  14. pino69

    OSP Code Campaign Arch3r OS: Bridge Battles

    Hello,

    Just to be sure.
    I'm using WB 1.134 with Diplomacy+PBO.
    Is that package plug and play in my module system, or do I have to make manual modifications to make it work ?
    What is the last stable version available ? The last posted by Somebody ?

    Thanks for the answers
  15. pino69

    OSP Code QoL Improved Trade Goods Mod (small)

    Lav,

    I'm using 1.134.
    Just found the solution : the code is in module_triggers.py.
    I suggest you update your first post for 1.134 users :wink:

    Thanks
Back
Top Bottom