Page 1 of 3 123 LastLast
Results 1 to 20 of 50

Thread: Download Hotfix Patch PI RTW_BI v072

  1. #1

    Default Download Hotfix Patch PI RTW_BI v072

    Hotfix Patch PI RTW_BI v072:
    http://files.filefront.com/Patch+PI+.../fileinfo.html

    Unzip the package and copy the PI folder into RTW main directory; overwrite the files when asked.

    DELETE THE FOLLOWING FILES:
    - PI/data/world/maps/base/map.rwm
    - PI/data/sounds/events.dat

    PAENINSULA ITALICA project creator

  2. #2

    Default Re: Download Hotfix Patch PI RTW_BI v072

    Thank you so much!
    A big THANKS to all Total War modders

    Visitor13 came to TWC for the wafers

  3. #3

    Default Re: Download Hotfix Patch PI RTW_BI v072

    yeah really thank you luciano

  4. #4
    HouseOfHam's Avatar Primicerius
    Join Date
    Apr 2007
    Location
    Minnesota, USA
    Posts
    3,030

    Default Re: Download Hotfix Patch PI RTW_BI v072

    What does this fix/add?

    ps: There are a couple typos in the credits, in the External Contributors section
    RTR website/SVN admin

    - Settlement coordinate locator -for RTW/M2TW
    - EDB Validator v1.2.8 (Oct 16, 2012) - for RTW/M2TW
    - RTW scripting tutorials
    - n-turns per year script generator

  5. #5
    Opifex
    Join Date
    Feb 2005
    Location
    New York, USA
    Posts
    15,154

    Default Re: Download Hotfix Patch PI RTW_BI v072

    Nice Luciano.

    Houseofham I just love that smiley.


    "If ye love wealth greater than liberty,
    the tranquility of servitude greater than
    the animating contest for freedom, go
    home from us in peace. We seek not
    your counsel, nor your arms. Crouch
    down and lick the hand that feeds you,
    and may posterity forget that ye were
    our countrymen."
    -Samuel Adams

  6. #6

    Default Re: Download Hotfix Patch PI RTW_BI v072

    The eternal two questions for any patch (post-release):

    -Changelog? (or even just a gross overview)

    -Save-compatible? (know the answer is likely no, but the forms must be obeyed)

    Further question: I don't have an events.dat in sounds. I have events.idx and bi.dat. Instruct me, oh wise ones
    Last edited by Pode; September 05, 2008 at 07:57 PM.

  7. #7

    Default Re: Download Hotfix Patch PI RTW_BI v072

    Excuse me,

    I missed the release of the patches... how many are there currently?

    Cheers...
    "Most people are like a leaf which is blown and turning around through the air,and wavers, and tumbles to the ground.
    But others, a few, are like stars, they go on a fixed course, no wind reaches them, in themselves they have their law and their course."


    Siddhartha in Siddhartha by Herman Hesse, Chapter Six

  8. #8

    Default Re: Download Hotfix Patch PI RTW_BI v072

    Quote Originally Posted by Argyri View Post
    Excuse me,

    I missed the release of the patches... how many are there currently?

    Cheers...
    It's the 1st one

  9. #9

    Default Re: Download Hotfix Patch PI RTW_BI v072

    Changes I've noted so far:
    -Diversified upkeep costs
    -Reduced movement points

  10. #10
    HouseOfHam's Avatar Primicerius
    Join Date
    Apr 2007
    Location
    Minnesota, USA
    Posts
    3,030

    Default Re: Download Hotfix Patch PI RTW_BI v072

    There is a bug in the triggers I added for starting the background script that makes the advisor pop up whenever the pre-battle scroll opens or if you press a button on it.

    If you don't want to wait for the next hotfix, you can fix it yourself by editting PI/export_descr_advice.txt. Near the end of the file, there is this code:

    Code:
    ;------------------------------------------
    Trigger backgroundScriptTrigger1
        WhenToTest ButtonPressed
    
        AdviceThread Background_Script_Thread  1
    
     ;------------------------------------------
     Trigger backgroundScriptTrigger2
         WhenToTest CharacterSelected
     
         AdviceThread Background_Script_Thread  1
    Change is to (add the Condition lines):

    Code:
    ;------------------------------------------
    Trigger backgroundScriptTrigger1
        WhenToTest ButtonPressed
    
        Condition I_ThreadCount Background_Script_Thread = 0
        
        AdviceThread Background_Script_Thread  1
    
    ;------------------------------------------
    Trigger backgroundScriptTrigger2
        WhenToTest CharacterSelected
    
        Condition I_ThreadCount Background_Script_Thread = 0
        
        AdviceThread Background_Script_Thread  1
    Last edited by HouseOfHam; September 06, 2008 at 07:47 PM.
    RTR website/SVN admin

    - Settlement coordinate locator -for RTW/M2TW
    - EDB Validator v1.2.8 (Oct 16, 2012) - for RTW/M2TW
    - RTW scripting tutorials
    - n-turns per year script generator

  11. #11

    Default Re: Download Hotfix Patch PI RTW_BI v072

    good evening all , I initially downloaded your MOD.
    I find it extra , then I downloaded the hotfix but I cannot save my campaigns. is this normal?

    (sorry for my english)

  12. #12
    Opifex
    Join Date
    Feb 2005
    Location
    New York, USA
    Posts
    15,154

    Default Re: Download Hotfix Patch PI RTW_BI v072

    This must be because of the script, right Handofham?


    "If ye love wealth greater than liberty,
    the tranquility of servitude greater than
    the animating contest for freedom, go
    home from us in peace. We seek not
    your counsel, nor your arms. Crouch
    down and lick the hand that feeds you,
    and may posterity forget that ye were
    our countrymen."
    -Samuel Adams

  13. #13
    Turkeys!'s Avatar Praepositus
    Join Date
    May 2006
    Location
    New Jersey, USA
    Posts
    5,610

    Default Re: Download Hotfix Patch PI RTW_BI v072

    Woot! Gonna try out a new campaign now.

  14. #14

    Default Re: Download Hotfix Patch PI RTW_BI v072

    I tried 7 campaigns but i can't save the game , i can't chose save and load option when i push on escap button during my campaign.

    I could saved my game before i've download the hotfix.

    I don't know where is the problem

  15. #15
    Leonidas480bc's Avatar Semisalis
    Join Date
    Oct 2004
    Location
    Dallas TX.
    Posts
    427

    Default Re: Download Hotfix Patch PI RTW_BI v072

    ;------------------------------------------
    Trigger backgroundScriptTrigger1
    WhenToTest ButtonPressed

    Condition I_ThreadCount Background_Script_Thread = 0

    AdviceThread Background_Script_Thread 1

    ;------------------------------------------
    Trigger backgroundScriptTrigger2
    WhenToTest CharacterSelected

    Condition I_ThreadCount Background_Script_Thread = 0

    AdviceThread Background_Script_Thread 1
    ;------------------------------------------
    Trigger backgroundScriptTrigger3
    WhenToTest SettlementSelected

    Condition I_ThreadCount Background_Script_Thread = 0

    AdviceThread Background_Script_Thread 1

    should'nt we also add the condition line here too?

  16. #16
    MathiasOfAthens's Avatar Comes Rei Militaris
    Join Date
    Nov 2006
    Location
    Stockholm, Sverige
    Posts
    22,877

    Default Re: Download Hotfix Patch PI RTW_BI v072

    Personally I do not like the new upkeeps and cost for each unit. I dont want to sound rude or anything you guys have done a great job so far and I know modding not easy so dont take this criticism as anything but help from a fan. I notice the upkeep cost differ by a couple dinaris, sometimes its 243 or 245 or 248. While the cost for the unit is the same, differs by a couple dinaris 645, 648 et cetera. My question therefore is how would one go about adjusting the upkeep and/or cost. Is it in a specific text file. I could not find any tutorial on it.
    ________
    User review vaporizers
    Last edited by MathiasOfAthens; May 11, 2011 at 01:44 AM.

  17. #17
    HouseOfHam's Avatar Primicerius
    Join Date
    Apr 2007
    Location
    Minnesota, USA
    Posts
    3,030

    Default Re: Download Hotfix Patch PI RTW_BI v072

    Quote Originally Posted by remus lassinus View Post
    I tried 7 campaigns but i can't save the game , i can't chose save and load option when i push on escap button during my campaign.

    I could saved my game before i've download the hotfix.

    I don't know where is the problem
    I'll quote Quinn Inuit's response to a similar complaint about ExRM:

    "I recommend closing the whole program, reopening it, and starting a new game. The error you're describing only occurs when you start a game, leave it before the second turn, and then create a new one without exiting the game."

    Quote Originally Posted by Leonidas480bc View Post
    should'nt we also add the condition line here too?
    You can and it won't hurt anything, but I haven't seen a situation where it would be necessary.
    RTR website/SVN admin

    - Settlement coordinate locator -for RTW/M2TW
    - EDB Validator v1.2.8 (Oct 16, 2012) - for RTW/M2TW
    - RTW scripting tutorials
    - n-turns per year script generator

  18. #18

    Default Re: Download Hotfix Patch PI RTW_BI v072

    Quote Originally Posted by MathiasOfAthens View Post
    My question therefore is how would one go about adjusting the upkeep and/or cost. Is it in a specific text file. I could not find any tutorial on it.
    Open export_descr_unit.txt in the data folder and adjust the stat_cost line for each unit, third entry

  19. #19
    Opifex
    Join Date
    Feb 2005
    Location
    New York, USA
    Posts
    15,154

    Default Re: Download Hotfix Patch PI RTW_BI v072

    Luciano, I really think that the code fix above would let people save campaigns, if they can't atm.


    "If ye love wealth greater than liberty,
    the tranquility of servitude greater than
    the animating contest for freedom, go
    home from us in peace. We seek not
    your counsel, nor your arms. Crouch
    down and lick the hand that feeds you,
    and may posterity forget that ye were
    our countrymen."
    -Samuel Adams

  20. #20
    HouseOfHam's Avatar Primicerius
    Join Date
    Apr 2007
    Location
    Minnesota, USA
    Posts
    3,030

    Default Re: Download Hotfix Patch PI RTW_BI v072

    Quote Originally Posted by SigniferOne View Post
    Luciano, I really think that the code fix above would let people save campaigns, if they can't atm.
    If you're referring to the trigger fix, it's unrelated to that problem. Rather, I believe that to be a bug in the RTW engine itself, failing to auto-terminate/cleanup after the script from the previous game when a new one is started.
    RTR website/SVN admin

    - Settlement coordinate locator -for RTW/M2TW
    - EDB Validator v1.2.8 (Oct 16, 2012) - for RTW/M2TW
    - RTW scripting tutorials
    - n-turns per year script generator

Page 1 of 3 123 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •