diff options
author | amber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-14 16:18:26 +0000 |
---|---|---|
committer | amber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-14 16:18:26 +0000 |
commit | 581475bc6416790765c498aa3d611f6868ffb64a (patch) | |
tree | 347ebf88eaa76e50488f23989d67cad834f3c9b1 /npc/sample/npc_test_func.txt | |
parent | 600362764ce348c5c9de96eababff2e08bb90d4a (diff) | |
download | hercules-581475bc6416790765c498aa3d611f6868ffb64a.tar.gz hercules-581475bc6416790765c498aa3d611f6868ffb64a.tar.bz2 hercules-581475bc6416790765c498aa3d611f6868ffb64a.tar.xz hercules-581475bc6416790765c498aa3d611f6868ffb64a.zip |
Fixed some file types
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/athena@172 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/sample/npc_test_func.txt')
-rw-r--r-- | npc/sample/npc_test_func.txt | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/npc/sample/npc_test_func.txt b/npc/sample/npc_test_func.txt index db659fc1b..a484ccb48 100644 --- a/npc/sample/npc_test_func.txt +++ b/npc/sample/npc_test_func.txt @@ -1,27 +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; // 省略できない
-}
-
+ +// 値を返さない関数 +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; // 省略できない +} + |