diff options
author | Valaris <Valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-01-29 16:00:45 +0000 |
---|---|---|
committer | Valaris <Valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-01-29 16:00:45 +0000 |
commit | a2675f07d7da22a7c6ae11f545bf8f671e785a82 (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /npc/sample/npc_test_func.txt | |
parent | b8801ae9585201eaaf9fdf80d9c7117ee18f52e2 (diff) | |
download | hercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.tar.gz hercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.tar.bz2 hercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.tar.xz hercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.zip |
Clearing trunk.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5091 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/sample/npc_test_func.txt')
-rw-r--r-- | npc/sample/npc_test_func.txt | 27 |
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; // 省略できない -} - |