Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
Game source /
core /
app /
Games /
Delete
Unzip
Name
Size
Permission
Date
Action
AndarBahar.php
3.99
KB
-rw-r--r--
2025-06-21 12:57
BlackJack.php
6.12
KB
-rw-r--r--
2025-03-04 12:16
CardFinding.php
859
B
-rw-r--r--
2025-06-22 07:28
CasinoDice.php
1.45
KB
-rw-r--r--
2025-02-23 11:39
ColorPrediction.php
2.5
KB
-rw-r--r--
2025-06-21 14:16
CrazyTimes.php
2.75
KB
-rw-r--r--
2025-06-21 13:49
DiceRolling.php
1
KB
-rw-r--r--
2025-06-22 07:31
DreamCatcher.php
9.78
KB
-rw-r--r--
2025-06-22 08:55
Game.php
12.61
KB
-rw-r--r--
2025-07-09 08:56
GamePlayer.php
2.45
KB
-rw-r--r--
2025-06-21 11:15
HeadTail.php
823
B
-rw-r--r--
2025-06-22 07:41
Keno.php
2.6
KB
-rw-r--r--
2025-06-22 07:45
Mines.php
4.3
KB
-rw-r--r--
2025-06-22 07:47
NumberGuess.php
2.7
KB
-rw-r--r--
2025-06-21 15:16
NumberSlot.php
3.79
KB
-rw-r--r--
2025-04-21 12:05
Poker.php
14.58
KB
-rw-r--r--
2025-06-21 14:21
PoolNumber.php
1.04
KB
-rw-r--r--
2025-06-21 15:20
RockPaperScissors.php
1.33
KB
-rw-r--r--
2025-06-22 07:38
Roulette.php
2.51
KB
-rw-r--r--
2025-03-18 14:08
SpinWheel.php
1.11
KB
-rw-r--r--
2025-06-22 07:35
Save
Rename
<?php namespace App\Games; use App\Constants\Status; class Keno extends Game { protected $alias = 'keno'; protected $extraValidationRule = [ 'choose' => 'required|array|min:1|max:80' ]; protected function gameResult() { $probableWin = $this->demoPlay ? $this->game->probable_win_demo : $this->game->probable_win; $random = mt_rand(0, 100); if ($random <= $probableWin) { $winLossData['win_status'] = Status::WIN; $winLossData['result'] = $this->request->choose; } else { $winLossData['win_status'] = Status::LOSS; $winLossData['result'] = $this->request->choose; } $winAmount = 0; $maxSelectNumber = @$this->game->level->max_select_number; if ($winLossData['win_status'] == 1) { $getRandNumber = rand(4, @$maxSelectNumber); $getNewSlotNumber = array_slice($winLossData['result'], 0, $getRandNumber, true); $matchNumber = $getNewSlotNumber; while (count($getNewSlotNumber) < $maxSelectNumber) { $randomValue = rand(1, 80); if (!in_array($randomValue, $getNewSlotNumber) && !in_array($randomValue, $winLossData['result'])) { array_push($getNewSlotNumber, (string) $randomValue); } } $winLossData['result'] = $getNewSlotNumber; $commission = array_reduce($this->game->level->levels, function ($carry, $element) use ($getRandNumber) { if ((int) $element->level === $getRandNumber) { $carry = $element->percent; } return $carry; }); $winAmount = $this->request->invest + ($this->request->invest * $commission / 100); } else { $loseSlotNumber = []; while (count($loseSlotNumber) < $maxSelectNumber) { $randomValue = rand(1, 80); if (!in_array($randomValue, $loseSlotNumber) && !in_array($randomValue, $winLossData['result'])) { array_push($loseSlotNumber, (string) $randomValue); } } $winLossData['result'] = $loseSlotNumber; $matchNumber = []; } $winLossData['win_amount'] = $winAmount; $this->userSelect = json_encode($this->request->choose); $this->extraResponseOnStart = array_merge($this->extraResponseOnStart, [ 'match_number' => $matchNumber, 'user_select' => $this->request->choose ]); return $winLossData; } }