summaryrefslogtreecommitdiff
path: root/doc/sample/npc_test_func.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/sample/npc_test_func.txt')
-rw-r--r--doc/sample/npc_test_func.txt26
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/sample/npc_test_func.txt b/doc/sample/npc_test_func.txt
new file mode 100644
index 000000000..2e613404f
--- /dev/null
+++ b/doc/sample/npc_test_func.txt
@@ -0,0 +1,26 @@
+
+// 値を返さない関数
+function script func001 {
+ mes "ユーザー定義関数";
+ next;
+ return; // 省略できない
+}
+
+// 値を返す関数
+function script func002 {
+ return "ユーザー定義関数2";
+}
+
+// 関数の呼び出しとサブルーティンのテスト
+prontera,168,189,1 script 関数テスト 112,{
+ callfunc "func001"; // ユーザー定義関数は文字列で指定
+ mes callfunc("func002");
+ next;
+ callsub L_SUB001; // サブルーティンはラベルを直接指定
+ close;
+ end;
+
+L_SUB001:
+ mes "サブルーティン";
+ return; // 省略できない
+}