Created
January 22, 2010 09:26
-
-
Save ericboehs/283649 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $SFlvlOneRP = 610560; | |
| $MFlvlOneRP = 532800; | |
| $desiredLevel = 1; | |
| $baseRPPH = 1.14; | |
| $maxScientiest = 333; | |
| $colonies = 8; | |
| $SFRPNeeded = $SFlvlOneRP*($desiredLevel*($desiredLevel+1)/2); | |
| $MFRPNeeded = $MFlvlOneRP*($desiredLevel*($desiredLevel+1)/2); | |
| $totalSFHours = $SFRPNeeded/(($baseRPPH+(($desiredLevel-1)*.02))*$maxScientiest*$colonies); | |
| $totalSFWeeks = $totalSFHours/24/7; | |
| $totalMFHours = $MFRPNeeded/(($baseRPPH)*$maxScientiest*$colonies); | |
| $totalMFWeeks = $totalMFHours/24/7; | |
| echo "Total hours for SF: $totalSFHours\n"; | |
| echo "Total hours for MF: $totalMFHours\n"; | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment