そうはならんやろ
なっとるやろがい
✞⇣おねがい押して!!!!⇣✞
web拍手ボタン
✞↑おねがい押して!!!!↑✞
✞✞ あなたは 人目のアリス... ✞✞
ぺやん製のつよつよ Pterodactyl テーマ(UserCSS)。(A pterodactyl theme made by UserCSS)
主な機能(Features):
- 背景画像(Background image)
- カスタムエディタフォント(Custom editor font) etc...
(Background image: https://search.find47.jp/ja/i/LeA39, Kyoto, Japan, CC-BY 4.0 Author: Suganu0405)
KUNLab(今のところぺやんのみ)製のプラグインマネージャ。(A plugin manager made in Japan)
主な機能(Features):
- 依存関係の自動解決(Automatically dependencies resolving)
- 依存関係ツリーの構築(Create dependencies tree)
- GitHubのリリースからのかんたんインストール(Install plugin from GitHub slightly less difficult)
- 高度なプラグインリゾルバ(Advanced plugin resolver)
KUNLab(今のところぺやんのみ)製のつよつよPaperLibrary。(A strong library for PaperMC made in Japan)
主な機能(Features):
-
Terminal API
Player player; Terminal term = Terminals.of(player); term.info("Hello, World!"); // => (ChatColor.BLUE) I: Hello, World! term.success("%b, %d = %d", 1 == 1, 1, 1); // => (ChatColor.GREEN) S: Yes, 1 = 1. term.error("No, java doesn't know math."); // => (ChatColor.RED) E: No, java doesn't know math. term.warn("Just like peyang."); // => (ChatColor.YELLOW) W: Just like peyang.
-
質問システム (Questioning system) (JAPANESE ONLY)
さんぷるこーど (Example Code)
``` Terminal term; Question question = term.getInput().showYNQuestionCancellable("Do you like Sushi?", QuestionAttribute.APPLY_FOR_ALL, QuestionAttribute.CANCELLABLE); /* => =============================================================== Do you like Sushi? 1. はい // Yes 2. いいえ // No 3. キャンセル // Cancel 4. すべてはい // Yes for all (Effect of QuestionAttribute.APPLY_FOR_ALL) 5. すべていいえ // No for all (Effect of QuestionAttribute.APPLY_FOR_ALL) 6. すべてキャンセル // Cancel for all (Effect of QuestionAttribute.APPLY_FOR_ALL) =============================================================== */ QuestionResult result = question.waitAndGetResult(); // Blocking method if (!terminal.test(QuestionAttribute.CANCELLABLE)) terminal.success(result.getRawAnswer()); // Get raw answer else terminal.error("NO, THE PLAYER CANCELLED THIS ACTION.") if (terminal.test(QuestionAttribute.YES_FOR_ALL)) terminal.info("↑ For ALL");
</details>
-
BukkitRunnableの省略(Omit
verbosenice syntax of BukkitRunnable)Runner.run(() => { Terminal.ofConsole().info("Hello, world!"); });
-
コマンドシステム (Command System)
- サブコマンドの提供 (Provides subcommand)
- ヘルプの自動生成 (Auto generating of command helps)
- このREADME および このリポジトリは, NYSLライセンス v0.9982で公開されています.