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, 0 insertions, 27 deletions
diff --git a/npc/sample/npc_test_func.txt b/npc/sample/npc_test_func.txt
deleted file mode 100644
index a484ccb48..000000000
--- a/npc/sample/npc_test_func.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-
-// 値を返さない関数
-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; // 省略できない
-}
-