Thread: Morale Mode
View Single Post
  #1  
Old 01-21-2009, 12:23 AM
The Rider The Rider is offline
Approved Member
 
Join Date: Jun 2008
Posts: 76
Default Morale Mod

I did some tweaking on the morale bonuses and I gave +1 morale for all units in the army with glory (3) - so glory at third level not only gives +500 leadership but +1 morale. The bonus works if at least one stack is human (the glory always was a human thing )
I am writing this to ask how do you find the morale bonuses. I find them too lacking. In my first game I was always with neutral morale, so no big critical bonuses. I played either with humans or with mixed army (human one race bonus is disabled in the game). In my second game I enabled the human bonus plus bonus +1 for humans and elves. And it was more fun with the crits. I know that some wives give +1 racial bonus and there are a few items but +3 bonus is something that I never reached.
Here is the code, the file to edit is in ses.kfc - morale.txt, just add the red text in the race2race function
Code:
// Наличие представителей одной расы изменяет мораль другой расы
race2race {
    undead {
        human=-2,hint_morale_undead,tolerance<1 //Присутствие нежити в армии. Мораль -2
        elf=-3,hint_morale_undead,tolerance<1   //Присутствие нежити в армии. Мораль -3
        dwarf=-2,hint_morale_undead,tolerance<1 //Присутствие нежити в армии. Мораль -2
        orc=-1,hint_morale_undead,tolerance<1   //Присутствие нежити в армии. Мораль -1
    }
    demon {
        human=-2,hint_morale_demon,tolerance<2  //Присутствие демонов в армии. Мораль -2
        elf=-2,hint_morale_demon,tolerance<2  	//Присутствие демонов в армии. Мораль -2
        dwarf=-3,hint_morale_demon,tolerance<2	//Присутствие демонов в армии. Мораль -3
    }
    elf {
        dwarf=-1,hint_morale_elf			//Присутствие гномов в армии. Мораль -1
    }
    dwarf {
        elf=-1,hint_morale_dwarf			//Присутствие эльфов в армии. Мораль -1
    }
    human {
        human=+1,hint_morale_glory,glory=3
        elf=+1,hint_morale_glory,glory=3
        dwarf=+1,hint_morale_glory,glory=3
        orc=+1,hint_morale_glory,glory=3
        undead=+1,hint_morale_glory,glory=3
        demon=+1,hint_morale_glory,glory=3
        neutral=+1,hint_morale_glory,glory=3
    }
}
I edited the hint files (language files) but you dont need it really to make it work

Last edited by The Rider; 01-25-2009 at 09:34 PM.
Reply With Quote