0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Minecraft Skript 超入門編 Part.1 プレイヤーをテレポートする

Last updated at Posted at 2020-09-08

超入門編を書く理由

私が運営しているDiscordサーバーに簡単な質問をする人が居ました。はい、それが書く理由です。まぁ、あるあるなのが大きなSkriptコミュニティに参加して初歩的なことを聞くと「ggrks」って言われることが多いんですよね(そこまでひどい事は言われない)。そして辞めちゃう人が居るんで思いつき次第超入門編をかいていきます。

コマンド実行でプレイヤーをテレポート

main.sk
command /main <number> <number> <number> <text>:
    trigger:
        teleport player to location at arg-1, arg-2, arg-3 of the world arg-4

/main 1 1 1 worldとコマンドを実行すると実行者をworldという名前のワールドのX座標1、Y座標1、z座標1にテレポートします。

#コマンド実行で指定したプレイヤーをテレポート

main.sk
command /main <number> <number> <number> <text> <player>:
    trigger:
        teleport arg-5 to location at arg-1, arg-2, arg-3 of the world arg-4

引数5を追加してその方をplayerにしました。

次はまだだよ

前はコチラ

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?