before I install this hack.. I m curious about this
Quote:
Originally posted by GenSec
It determs if current time is odd or even.
If you change to $fatum=time()%3 you decrease the chance of success. But if you also change if ($fatum) to oppose if (!$fatum) you increase your chances.
|
In other word, to increase chance by replace
PHP Code:
$fatum=time()%2
to:
PHP Code:
if ($fatum)=time()%2
or:
PHP Code:
if (!$fatum)=time()%2
which one? or different? I m newbie with PHP stuff :-) and also your hack are awesome and fun thing to do :-)