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 Roulette extends Game { protected $alias = 'roulette'; protected $resultShowOnStart = true; protected $extraValidationRule = [ 'choose' => 'required|in:1_12,13_24,25_36,1_18,19_36,even,odd,red,black,2_1_1,2_1_2,2_1_3,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36' ]; protected function gameResult() { if ($this->request->choose == '1_12') { $numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]; } else if ($this->request->choose == '13_24') { $numbers = [13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24]; } else if ($this->request->choose == '25_36') { $numbers = [25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36]; } else if ($this->request->choose == '1_18') { $numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18]; } else if ($this->request->choose == '19_36') { $numbers = [19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36]; } else if ($this->request->choose == 'even') { $numbers = [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36]; } else if ($this->request->choose == 'odd') { $numbers = [1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35]; } else if ($this->request->choose == 'red') { $numbers = [1, 3, 5, 7, 9, 12, 14, 16, 18, 19, 21, 23, 25, 27, 30, 32, 34, 36]; } else if ($this->request->choose == 'black') { $numbers = [2, 4, 6, 8, 10, 11, 13, 15, 17, 20, 22, 24, 26, 28, 29, 31, 33, 35]; } else if ($this->request->choose == '2_1_1') { $numbers = [3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36]; } else if ($this->request->choose == '2_1_2') { $numbers = [2, 5, 8, 11, 14, 17, 20, 23, 26, 29, 32, 35]; } else if ($this->request->choose == '2_1_3') { $numbers = [1, 4, 7, 10, 13, 16, 19, 22, 25, 28, 31, 34]; } else { $numbers = [$this->request->choose]; } $random = rand(1, 36); if (in_array($random, $numbers)) { $win = Status::WIN; } else { $win = Status::LOSS; } $winAmount = $this->request->invest * (36 / count($numbers)); $winLossData['win_status'] = $win; $winLossData['result'] = $random; $winLossData['win_amount'] = $winAmount; return $winLossData; } }