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