PHP code example of irfa / php-gatcha
1. Go to this page and download the library: Download irfa/php-gatcha 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/ */
irfa / php-gatcha example snippets
composer
'aliases' => [
...
'Gatcha' => Irfa\Gatcha\Roll::class,
...
];
...
use Gatcha
class Example {
function index()
{
return Gatcha::put([ 'Item 1' => 29.4, 'Item 2' => 0.3])->spin();
}
}
use Irfa\Gatcha\Roll;`
$items = [
'common ITEM1' => 70, // 70% chance
'Rare ITEM 2' => 29.4, // 29.4% chance
'Super Rare ITEM' => 0.3, // 0.3% chance
'Super Rare ITEM 2' => 0.3,
'Super Super Rare ITEM' => 0.003, // 0.003% chance
];
$item_get = Roll::put($items)->spin();
echo "Congratulations you get ".$item_get;
use Irfa\Gatcha\Roll;
$items = [
'common ITEM1' => 70, // 70% chance
'Rare ITEM 2' => 29.4, // 29.4% chance
'Super Rare ITEM' => 0.3, // 0.3% chance
'Super Rare ITEM 2' => 0.3,
'Super Super Rare ITEM' => 0.003, // 0.003% chance
];
Roll::put($items)
if(date('Y-m-d') == '2020-03-21') //example event date
{
Roll::dropUp(['Super Rare ITEM', 'Super Rare ITEM 2'], 200)//Drop up rate 200%
->dropUp('common ITEM1', 300); //Drop up rate 300%
//Parameters items (items index in array), rate in percent
}
$item_get = Roll::spin();
echo "Congratulations you get ".$item_get;
Roll::put($items)->jsonSpin();