Skip to content

Instantly share code, notes, and snippets.

View Steellgold's full-sized avatar
🎯

Gaëtan H Steellgold

🎯
View GitHub Profile
@Steellgold
Steellgold / Unicode.php
Last active November 25, 2023 15:40
Recover a unicode to use it. (From my private project)
<?php
namespace your/namespace;
use JsonException;
use pocketmine\utils\Config;
// use your/plugin/Main
class Unicode {
@Steellgold
Steellgold / Serializer.php
Created July 10, 2022 21:06
Serialize and unserialize contents inventory (PocketMine-MP 4)
<?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;
@Steellgold
Steellgold / ChancePercentage.php
Last active January 26, 2022 20:09
Chance Function PHP
<?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!!"
<?php
namespace App\Utils;
use Exception;
class UUID {
/**
* @throws Exception
*/