This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace your/namespace; | |
| use JsonException; | |
| use pocketmine\utils\Config; | |
| // use your/plugin/Main | |
| class Unicode { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace steellgold\utils; | |
| use pocketmine\item\Item; | |
| use pocketmine\nbt\BigEndianNbtSerializer; | |
| use pocketmine\nbt\NBT; | |
| use pocketmine\nbt\tag\CompoundTag; | |
| use pocketmine\nbt\tag\ListTag; | |
| use pocketmine\nbt\TreeRoot; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Utils; | |
| class ChancePercentage { | |
| public function chancePercentage(array $array = [ | |
| "myFirstValue" => [ | |
| "chance" => 3, | |
| "name" => "Money x40000", | |
| "content" => "This is mythic rarity! if you have luck you win this!!" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Utils; | |
| use Exception; | |
| class UUID { | |
| /** | |
| * @throws Exception | |
| */ |
NewerOlder