Ok I haven't tested it yet, but I think I get the gist of it.
Here it goes.
1.go to the litecoin site
2.go to their github page
3.open the src folder
4.open main.cpp
5.scroll down until you find
{
int64 nSubsidy = 50 * COIN; //amount of coins rewarded for block
// Subsidy is cut in half every 840000 blocks, which will occur approximately every 4 years
nSubsidy >>= (nHeight / 840000); // Litecoin: 840k blocks in ~4 years
return nSubsidy + nFees;
}
static const int64 nTargetTimespan = 3.5 * 24 * 60 * 60; // Litecoin: 3.5 days
static const int64 nTargetSpacing = 2.5 * 60; // Litecoin: 2.5 minutes
static const int64 nInterval = nTargetTimespan / nTargetSpacing;
change values accordingly
6.click on main.h
7.scroll down to MAX_MONEY and change the values to the amount of coins that will be mined.
8.compile
I'm still trying to find out how to change the difficulty adjustments.
On the mean time please drop some mBTC on my e-tin cup
1J4qneVzmNquByudkY4DREsiLXRrgjDG3M