Fresh install, fresh manual load of all core mods. Appears not to work on 2.2 -- cannot effectively set the payment interval or change the specific fees when toggling on a rent or payment.
Love this mod! I have a question though. Are the settings supposed to save or do I have to edit them each time I load the save? Other than that great job implementing this very nice addition :)
I feel really dumb. But I can't seem to work out how to move the noitification window during gameplay. Can you help, I have read the instructions, but either I'm blind or there doesn't seem to be anything that says how to move the window. Only on the front page does it state that you can?
70 comments
In init.lua, select line 67 through line 95 and paste this over the code you've selected:
vsRentIncome = vsRentIncome,
vsRentIncomeValue = vsRentIncomeValue,
northsideRentIncome = northsideRentIncome,
northsideRentIncomeValue = northsideRentIncomeValue,
japantownRentIncome = japantownRentIncome,
japantownRentIncomeValue = japantownRentIncomeValue,
glenRentIncome = glenRentIncome,
glenRentIncomeValue = glenRentIncomeValue,
corpoRentIncome = corpoRentIncome,
corpoRentIncomeValue = corpoRentIncomeValue,
streetIncome = streetIncome,
streetIncomeValue = streetIncomeValue,
vsRentFees = vsRentFees,
vsRentFeesValue = vsRentFeesValue,
northsideRentFees = northsideRentFees,
northsideRentFeesValue = northsideRentFeesValue,
japantownRentFees = japantownRentFees,
japantownRentFeesValue = japantownRentFeesValue,
glenRentFees = glenRentFees,
glenRentFeesValue = glenRentFeesValue,
corpoRentFees = corpoRentFees,
corpoRentFeesValue = corpoRentFeesValue,
insuranceFees = insuranceFees,
insuranceFeesValue = insuranceFeesValue,
cheats = cheats,
incomeValue = incomeValue,
feesValue = feesValue,
paymentInterval = paymentInterval,
enableInfoBox = enableInfoBox
Now select line 118 through line 146 and paste the following:
vsRentIncome = settings.vsRentIncome
vsRentIncomeValue = settings.vsRentIncomeValue
northsideRentIncome = settings.northsideRentIncome
northsideRentIncomeValue = settings.northsideRentIncomeValue
japantownRentIncome = settings.japantownRentIncome
japantownRentIncomeValue = settings.japantownRentIncomeValue
glenRentIncome = settings.glenRentIncome
glenRentIncomeValue = settings.glenRentIncomeValue
corpoRentIncome = settings.corpoRentIncome
corpoRentIncomeValue = settings.corpoRentIncomeValue
streetIncome = settings.streetIncome
streetIncomeValue = settings.streetIncomeValue
vsRentFees = settings.vsRentFees
vsRentFeesValue = settings.vsRentFeesValue
northsideRentFees = settings.northsideRentFees
northsideRentFeesValue = settings.northsideRentFeesValue
japantownRentFees = settings.japantownRentFees
japantownRentFeesValue = settings.japantownRentFeesValue
glenRentFees = settings.glenRentFees
glenRentFeesValue = settings.glenRentFeesValue
corpoRentFees = settings.corpoRentFees
corpoRentFeesValue = settings.corpoRentFeesValue
insuranceFees = settings.insuranceFees
insuranceFeesValue = settings.insuranceFeesValue
cheats = settings.cheats
incomeValue = settings.incomeValue
feesValue = settings.feesValue
paymentInterval = settings.paymentInterval
enableInfoBox = settings.enableInfoBox
This will solve the issue.