Quote:
Originally Posted by Revan
I will pay $25k to the person that can explain to me why the original coder of the uCS hack coded an infinite loop in order to do a calculation not dependant on the loop result. At all.
I will explain:
This code was found in ushop/action.bank.php:
PHP Code:
while ($time >= $nextinterest) {
$amount = (($amount * ($action['interestpercent'] / 100)) + $amount);
$nextinterest = ($nextinterest + $action['interestincrement']);
}
So if you replace it with this:
PHP Code:
while ($time >= $nextinterest) {
$amount = (($amount * ($action['interestpercent'] / 100)) + $amount);
echo $nextinterest;
echo "<br />";
//$nextinterest = ($nextinterest + $action['interestincrement']);
}
die();
you will notice an infinite loop.
All echoing the same number.
Now replace it with this:
PHP Code:
$amount = (($amount * ($action['interestpercent'] / 100)) + $amount);
$nextinterest = ($nextinterest + $action['interestincrement']);
And the bank will work.
// End rant
I still have other problems to look into and an Uninstaller to code before I release Beta 2.
|
LOL @
Quote:
I will pay $25k to the person that can explain to me why the original coder of the uCS hack coded an infinite loop in order to do a calculation not dependant on the loop result. At all.
|
look like everything will be alright, cus my shop is just there for nothing :P