| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- // 游戏配置
- use think\facade\Env;
- // 游戏大类
- $GLOBALS['gameGameTypeConfig'] = [
- "1" => 'Spribe',
- '2' => 'PG'
- ];
- $GLOBALS['gamePgGameConfig'] = [
- //
- 'game_rounds' => [50, 60, 70, 80, 90, 100, 150, 200, 300, 400, 500],
- 'game_max_rtp' => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15],
- 'order_status' => [
- '2' => '成功',
- '1' => '警告',
- '0' => '异常',
- ],
- 'transform_status' => [
- '2' => '待处理',
- '1' => '成功',
- '0' => '失败',
- ],
- //RTP档位
- 'rtp_config' => [70,75,80,85,90,93,95,97,99,102],
- // 押注等级
- 'deposit_level' => [1,2,3,4,5,6,7,8,9,10],
- // 默认押注等级
- 'default_deposit_level' => 10,
- // 线数
- 'line_numbers' => 30,
- // 返还类型
- 'rtp_type_config' => [
- '1' => ['name' => '心跳型', 'desc' => '玩家中奖倍数大,中奖率相对较低,短时间赢取大奖的几率较高,在玩家戏局数不是非常少时,游戏总体RTP和玩家个人RTP均较稳定'],
- '2' => ['name' => '平缓型', 'desc' => '玩家中奖倍数较小,中奖半相对较高,短时间赢取大奖的几率较低,在玩家游戏局数不是非常少时,游戏总体RTP和玩家个人RTP均较稳逆'],
- '3' => ['name' => '混合型', 'desc' => '中奖倍致,中奖率,短时间赢取大奖的几率介于心跳型和平缓型之间,在玩家游戏局数不是非常少时,游戏总体RTP和玩家个人RTP均较稳定'],
- '4' => ['name' => '仿正版', 'desc' => '短时间内游戏RTP波动较大,长期来看游戏RTP超于稳定,玩家个人RTP可能会出现爆输爆赢的情况,能出非常大的倍数,平台玩家不多时请谨慎使用'],
- ],
- // 游戏玩法类型
- 'play_type' => [
- '1' => '连消',
- '2' => '免费旋转',
- '3' => '重转',
- '4' => '高倍',
- ],
- "login_status" => [
- "1" => "成功",
- "0" => "失败"
- ],
- "behavior_status" => [
- "1" => "成功",
- "0" => "失败"
- ]
- ];
- $max_multiple = [];
- $diff_multiple = 50;
- for($diff_gm = 50; $diff_gm <= 100000; $diff_gm += $diff_multiple) {
- $max_multiple[] = $diff_gm;
- if($diff_gm >= 1000) {
- $diff_multiple = 100;
- }
- }
- $GLOBALS['gamePgGameConfig']['max_multiple'] = $max_multiple;
- $GLOBALS['FeedUserConfig'] = [
- "net_income" => [10, 20, 30, 50, 70, 100, 200, 500, 1000, 1500, 2000, 3000, 5000, 10000, 50000, 100000, 500000, 1000000],
- "turnover_multiple" => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 30, 50, 100, 500, 1000, 5000],
- "evaluation_period" => [
- ['label' => '每日','value' => 1],
- ['label' => '每周','value' => 2],
- ['label' => '每月','value' => 3],
- ['label' => '终生','value' => 4],
- ['label' => '自选时间段','value' => 5],
- ],
- "effective_count" => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 30, 50, 100, 1000],
- "triggerInterval_rounds" => [5, 10, 15, 20, 30, 40, 50, 60, 80, 100, 150, 200, 300],
- 'record_status' => [
- "1" => '生效中',
- "0" => '已结束'
- ]
- ];
- // 静态Domain
- $GLOBALS['gameGameStaticDomain'] = Env::get('GAME_STATIC_DOMAIN', 'game.w115.net');
- // 游戏布局Domain
- $GLOBALS['gameGameLayoutDomain'] = Env::get('GAME_LAYOUT_DOMAIN', 'https://history.w115.net');
|