Console_OutputLine()
対応バージョン
Section titled “対応バージョン”Console_OutputLine(テキスト);コンソール画面にテキストを出力します。
末尾には自動的に改行が入ります。
サンプルコード
Section titled “サンプルコード”Console_OutputLine("NPC has spawned at X: " + string(x) + ", Y: " + string(y));Console_OutputLine("Success!");上記コードは、コンソール画面にNPC has spawned at X: [x], Y: [y]を表示し、改行されてSuccess!というメッセージも出力します。