Results 1 to 3 of 3

Thread: Money script

  1. #1

    Default Money script

    Hi all, i would apologize for the words i'll use, english is not my first language.
    LTC is a wonderful mod but there is a thing i dilsike: the money script.
    Is disabling it the money script possible ???

    I played during 30-40 turns with milanese and was "inquisiting" the excomuniated HRE and all was fine.
    Suddenly, I took Nuremberg so they were in the RED. Result: the script give him 15000 fl, he buy a full army and next turn (more soldiers so more cash for support) he is deeper in the debt.
    Script give him 15K, more soldier more debt and so on.

    Result: I'm continuously attacked by 5 or 6 full armies: I can defend but as the more i kill him the more they come, i can't attack (i have 10 towns/castles vs 5)

  2. #2
    Lusted's Avatar Look to the stars
    Join Date
    Jan 2005
    Location
    Brighton, Sussex, England.
    Posts
    18,183

    Default Re: Money script

    Simply remove this section from campaign_script.txt in landstoconquer\data\world\maps\campaign\imperial_campaign

    Code:
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType england 
    		and Treasury < 20000
    		console_command add_money england, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType france
    		and Treasury < 20000
    		console_command add_money france, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType hre
    		and Treasury < 20000
    		console_command add_money hre, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType spain 
    		and Treasury < 20000
    		console_command add_money spain, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType venice 
    		and Treasury < 20000
    		console_command add_money venice, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType sicily 
    		and Treasury < 20000
    		console_command add_money sicily, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType milan 
    		and Treasury < 20000
    		console_command add_money milan, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType scotland 
    		and Treasury < 20000
    		console_command add_money scotland, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType byzantium 
    		and Treasury < 20000
    		console_command add_money byzantium, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType russia 
    		and Treasury < 20000
    		console_command add_money russia, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType moors 
    		and Treasury < 20000
    		console_command add_money moors, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType turks 
    		and Treasury < 20000
    		console_command add_money turks, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType egypt
    		and Treasury < 20000
    		console_command add_money egypt, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType denmark 
    		and Treasury < 20000
    		console_command add_money denmark, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType portugal 
    		and Treasury < 20000
    		console_command add_money portugal, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType poland 
    		and Treasury < 20000
    		console_command add_money poland, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType hungary 
    		and Treasury < 20000
    		console_command add_money hungary, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType papal_states 
    		and Treasury < 20000
    		console_command add_money papal_states, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType aztecs 
    		and Treasury < 20000
    		console_command add_money aztecs, 15000
    	end_monitor
    
    
    	monitor_event FactionTurnStart not FactionIsLocal 
    		and FactionType mongols 
    		and Treasury < 20000
    		console_command add_money mongols, 15000
    	end_monitor
    Creator of:
    Lands to Conquer Gold for Medieval II: Kingdoms
    Terrae Expugnandae Gold Open Beta for RTW 1.5
    Proud ex-Moderator and ex-Administrator of TWC from Jan 06 to June 07
    Awarded the Rank of Opifex for outstanding contributions to the TW mod community.
    Awarded the Rank of Divus for oustanding work during my times as Administrator.

  3. #3

    Default Re: Money script

    Ok thank you.
    Your work is fine and your support is very reactive.
    Perhaps i will only reduce the money help, but for now i try to play with it...

Posting Permissions

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