PHP code example of jifish / ezdice
1. Go to this page and download the library: Download jifish/ezdice library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jifish / ezdice example snippets
$ezd = new ezdice\EZDice();
echo($ezd->roll('1d20+2d4'));
echo(' Rolls:');
foreach($ezd->getDiceStates() as $die) {
echo(' ['.$die['value'].'] ');
}
class WeightedDice extends ezdice\EZDice {
protected function getRandomNumber($max) {
if (mt_rand(0,1)) return $max;
return mt_rand(1,$max);
}
}