Here's a better way to fix the one million limit on undivided loot. File DailyCrewUpdate.c
<!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->// LDH change to one million plus monthly pay for crew and officers - 29Apr09
int money = sti(pchar.money) - ( 1000000 + GetEstimatedOfficerPay() + GetEstimatedCrewPay() );<!--c2--></div><!--ec2-->
This allows you to accumulate one million above the monthly pay for the crew and officers before lowering your morale. This will help if you have a lot of crew and officers. Replace the old "int money" line with the one above.
This change has also been posted in the modders section.
Hook
<!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1-->// LDH change to one million plus monthly pay for crew and officers - 29Apr09
int money = sti(pchar.money) - ( 1000000 + GetEstimatedOfficerPay() + GetEstimatedCrewPay() );<!--c2--></div><!--ec2-->
This allows you to accumulate one million above the monthly pay for the crew and officers before lowering your morale. This will help if you have a lot of crew and officers. Replace the old "int money" line with the one above.
This change has also been posted in the modders section.
Hook