あお🦀
あお🦀
PDCPlayerRealms developerS Community
Created by Kurumi1011 on 11/1/2024 in #help-forum
ファイルの書き込みをしたい。
No description
7 replies
PDCPlayerRealms developerS Community
Created by Kurumi1011 on 11/1/2024 in #help-forum
ファイルの書き込みをしたい。
sftpを使ってファイル操作するrestapiサーバーを噛ませれば可能です reqnを使って用意したapiへpost(or put)→apiサーバー側でsftpを用いてファイル取得→ファイルにpostで受け取ったデータを下に変更を加えPR側にsftpで戻す ただしこれ正常に変更されたかがわからないので、変更を受け取りたい場合はDiscordsrvのconsoleにコマンドを流すようなコードをrestapi側に追加して変更を受け取れます(もっといい方法あるかもしれませんがこれしか思いつきませんでした) 外部ツールが必要になりますが一応可能です
7 replies
PDCPlayerRealms developerS Community
Created by あお🦀 on 8/20/2024 in #help-forum
skripthubの使い方のパターンの名前が知りたい
「正規表現」などのように名前がついていればということです なさそうですね、、ありがとうございました
15 replies
PDCPlayerRealms developerS Community
Created by あお🦀 on 8/20/2024 in #help-forum
skripthubの使い方のパターンの名前が知りたい
読み方はわかるのですが、名称があれば知りたいです
15 replies
PDCPlayerRealms developerS Community
Created by あお🦀 on 6/25/2024 in #help-forum
変数名の最初にハイフンをつけるのにはなにか意味があるのですか?
ありがとうございます!
18 replies
PDCPlayerRealms developerS Community
Created by あお🦀 on 6/25/2024 in #help-forum
変数名の最初にハイフンをつけるのにはなにか意味があるのですか?
今まで一度も解説を見たことがない仕様でした
18 replies
PDCPlayerRealms developerS Community
Created by あお🦀 on 6/25/2024 in #help-forum
変数名の最初にハイフンをつけるのにはなにか意味があるのですか?
なるほど!
18 replies
PDCPlayerRealms developerS Community
Created by 𝓓𝓮𝓮𝓵𝓪 on 7/21/2024 in #help-forum
統合版のGUIをSkriptで
No description
30 replies
PDCPlayerRealms developerS Community
Created by 𝓓𝓮𝓮𝓵𝓪 on 7/21/2024 in #help-forum
統合版のGUIをSkriptで
No description
30 replies
PDCPlayerRealms developerS Community
Created by 𝓓𝓮𝓮𝓵𝓪 on 7/21/2024 in #help-forum
統合版のGUIをSkriptで
すいません、cumulusはgeyserに標準搭載されているようでしたので別でいれる必要はありませんでした 表示だけなら以下のコードでできます(wikiに書いてあるものをそのままをskに)
import:
org.geysermc.cumulus.form.ModalForm
org.geysermc.cumulus.form.SimpleForm
org.geysermc.cumulus.form.CustomForm
org.geysermc.cumulus.util.FormImage
org.geysermc.floodgate.api.FloodgateApi

command /modalform:
trigger:
set {_floodgateapi} to FloodgateApi.getInstance()
set {_uuid} to player.getUniqueId()
if {_floodgateapi}.isFloodgatePlayer({_uuid}) is true:
set {_player} to {_floodgateapi}.getPlayer({_uuid})
set {_form} to ModalForm.builder().title("Title").content("Content").button1("Button 1").button2("Button 2")
{_player}.sendForm({_form})
else:
send "統合版プレイヤーではありません"

command /simpleform:
trigger:
set {_floodgateapi} to FloodgateApi.getInstance()
set {_uuid} to player.getUniqueId()
if {_floodgateapi}.isFloodgatePlayer({_uuid}) is true:
set {_player} to {_floodgateapi}.getPlayer({_uuid})
set {_form} to SimpleForm.builder().title("Title").content("Content").button("Button without an image").button("Button with URL image", FormImage.Type.URL, "https://github.com/GeyserMC.png?size=200%22).button(%22Button with path image", FormImage.Type.PATH, "textures/i/glyph_world_template.png")
{_player}.sendForm({_form})
else:
send "統合版プレイヤーではありません"

command /customform:
trigger:
set {_floodgateapi} to FloodgateApi.getInstance()
set {_uuid} to player.getUniqueId()
if {_floodgateapi}.isFloodgatePlayer({_uuid}) is true:
set {_player} to {_floodgateapi}.getPlayer({_uuid})
set {_form} to CustomForm.builder().title("Title").dropdown("Text", "Option 1", "Option 2").input("Input", "placeholder").toggle("Toggle").slider("Text", 0, 10, 1, 5)
{_player}.sendForm({_form})
else:
send "統合版プレイヤーではありません"
import:
org.geysermc.cumulus.form.ModalForm
org.geysermc.cumulus.form.SimpleForm
org.geysermc.cumulus.form.CustomForm
org.geysermc.cumulus.util.FormImage
org.geysermc.floodgate.api.FloodgateApi

command /modalform:
trigger:
set {_floodgateapi} to FloodgateApi.getInstance()
set {_uuid} to player.getUniqueId()
if {_floodgateapi}.isFloodgatePlayer({_uuid}) is true:
set {_player} to {_floodgateapi}.getPlayer({_uuid})
set {_form} to ModalForm.builder().title("Title").content("Content").button1("Button 1").button2("Button 2")
{_player}.sendForm({_form})
else:
send "統合版プレイヤーではありません"

command /simpleform:
trigger:
set {_floodgateapi} to FloodgateApi.getInstance()
set {_uuid} to player.getUniqueId()
if {_floodgateapi}.isFloodgatePlayer({_uuid}) is true:
set {_player} to {_floodgateapi}.getPlayer({_uuid})
set {_form} to SimpleForm.builder().title("Title").content("Content").button("Button without an image").button("Button with URL image", FormImage.Type.URL, "https://github.com/GeyserMC.png?size=200%22).button(%22Button with path image", FormImage.Type.PATH, "textures/i/glyph_world_template.png")
{_player}.sendForm({_form})
else:
send "統合版プレイヤーではありません"

command /customform:
trigger:
set {_floodgateapi} to FloodgateApi.getInstance()
set {_uuid} to player.getUniqueId()
if {_floodgateapi}.isFloodgatePlayer({_uuid}) is true:
set {_player} to {_floodgateapi}.getPlayer({_uuid})
set {_form} to CustomForm.builder().title("Title").dropdown("Text", "Option 1", "Option 2").input("Input", "placeholder").toggle("Toggle").slider("Text", 0, 10, 1, 5)
{_player}.sendForm({_form})
else:
send "統合版プレイヤーではありません"
クリックしたときに何らかの動作を加えるのはskriptの特性上難しいかもしれません できないかいま探しています
30 replies
PDCPlayerRealms developerS Community
Created by 𝓓𝓮𝓮𝓵𝓪 on 7/21/2024 in #help-forum
統合版のGUIをSkriptで
apiではなく元々メニューを用意して開かせるタイプのやつ https://www.spigotmc.org/resources/crossplatforms.101043/ (skriptで使うとなるとだいぶハードそう)
30 replies
PDCPlayerRealms developerS Community
Created by 𝓓𝓮𝓮𝓵𝓪 on 7/21/2024 in #help-forum
統合版のGUIをSkriptで
https://github.com/GeyserMC/Cumulus https://geysermc.org/wiki/geyser/forms/ 最終手段にはなりますがGeyserのform用プラグインのapiをreflectで呼び出せば行けそうです(このプラグイン自体使えるのか分かりませんが)
30 replies
PDCPlayerRealms developerS Community
Created by ゆきあ on 7/19/2024 in #help-forum
クリックしたブロックの面の方向を取得したい
東西南北とプレイヤーのpitchで上下判別
22 replies
PDCPlayerRealms developerS Community
Created by ゆきあ on 7/19/2024 in #help-forum
クリックしたブロックの面の方向を取得したい
面と言うよりはプレイヤーの向いている方向で判別した方がいい気がします
22 replies
PDCPlayerRealms developerS Community
Created by 𝓓𝓮𝓮𝓵𝓪 on 7/14/2024 in #help-forum
[Skript] プレイヤーが使ったサーバーアドレス
テストは1.19.4と1.17.1でしてます
7 replies
PDCPlayerRealms developerS Community
Created by 𝓓𝓮𝓮𝓵𝓪 on 7/14/2024 in #help-forum
[Skript] プレイヤーが使ったサーバーアドレス
No description
7 replies
worldeditのposをlocationとしてgetするfunction
No description
2 replies
PDCPlayerRealms developerS Community
Created by nennneko5787 on 6/29/2024 in #help-forum
pushで空中に浮かせたくない
https://skripthub.net/docs/?id=6586 https://skripthub.net/docs/?id=6630 動作が同じ感じかはわかりませんが使えるかもしれないです
36 replies
PDCPlayerRealms developerS Community
Created by nennneko5787 on 6/29/2024 in #help-forum
pushで空中に浮かせたくない
https://skripthub.net/docs/?id=10169 ぽいです...すいません
36 replies
PDCPlayerRealms developerS Community
Created by nennneko5787 on 6/29/2024 in #help-forum
pushで空中に浮かせたくない
No description
36 replies