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 | |
/* | |
* @name MyTestPlugin | |
* @main PJZ9n\MyTestPlugin\Main | |
* @version 1.0.0 | |
* @api 3 | |
* @description My Test Plugin | |
* @author PJZ9n | |
*/ |
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 | |
$errors = []; | |
if (!isset($_POST["email"])) { | |
$errors[] = "メールアドレス未送信"; | |
} else { | |
$email = $_POST["email"]; | |
} | |
if (!isset($_POST["userid"])) { |
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
/** | |
* キーマトリクスを使ってみる 2019.06.08 | |
* | |
* 1□2□3□ | |
* 4□5□6□ | |
* 7□8□9□ | |
* | |
* MEMO: プルアップとプルダウンは異なる | |
*/ |
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 | |
/** | |
* @name WorldCheck | |
* @main PJZ9n\WorldCheck\Main | |
* @version 1.0.0 | |
* @api 3.0.0 | |
* @description World Check Plugin | |
* @author PJZ9n | |
*/ |
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
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<!-- Required Meta --> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<!-- Load CSS --> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" |
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 | |
/** | |
* @name PacketShow | |
* @main PJZ9n\PacketShow\Main | |
* @version 1.0.0 | |
* @api 3.0.0 | |
* @author PJZ9n | |
*/ | |
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 | |
/** | |
* @name PacketShow | |
* @main PJZ9n\PacketShow\Main | |
* @version 1.0.0 | |
* @api 3.0.0 | |
* @author PJZ9n | |
*/ | |
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 StopMessagePlugin; | |
//Events | |
use pocketmine\event\block\BlockBreakEvent; | |
use pocketmine\event\block\BlockPlaceEvent; | |
use pocketmine\event\entity\EntityInventoryChangeEvent; | |
use pocketmine\event\player\PlayerAchievementAwardedEvent; | |
use pocketmine\event\player\PlayerChatEvent; |
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 | |
declare(strict_types=1); | |
/** | |
* @name PluginC | |
* @version 1.0.0 | |
* @main PJZ9n\PluginC\Main | |
* @api 3.0.0 | |
*/ |
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 CmdSignPlugin; | |
//Events | |
use pocketmine\event\block\BlockBreakEvent; | |
use pocketmine\event\block\BlockPlaceEvent; | |
use pocketmine\event\block\SignChangeEvent; | |
use pocketmine\event\entity\EntityInventoryChangeEvent; | |
use pocketmine\event\player\PlayerAchievementAwardedEvent; |