summaryrefslogtreecommitdiff
path: root/npc/sample/npc_test_array.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/sample/npc_test_array.txt')
-rw-r--r--npc/sample/npc_test_array.txt35
1 files changed, 35 insertions, 0 deletions
diff --git a/npc/sample/npc_test_array.txt b/npc/sample/npc_test_array.txt
new file mode 100644
index 000000000..9d77843c8
--- /dev/null
+++ b/npc/sample/npc_test_array.txt
@@ -0,0 +1,35 @@
+// 配列のテスト
+prontera.gat,164,190,1 script 配列テスト 112,{
+ set @hoge[0],1;
+ set @hoge[1],5;
+ mes "hoge[2]を入力してください";
+ next;
+ input @hoge[2];
+ mes "hoge => " + @hoge;
+ mes "hoge[0]=> " + @hoge[0];
+ mes "hoge[1]=> " + @hoge[1];
+ mes "hoge[2]=> " + @hoge[2];
+ next;
+ setarray @hoge[1],2,3,4,5;
+ mes "true: 5,1,2,3,4";
+ mes "hoge size = "+ getarraysize(@hoge);
+ mes "hoge[0]=> " + @hoge[0];
+ mes "hoge[1]=> " + @hoge[1];
+ mes "hoge[2]=> " + @hoge[2];
+ mes "hoge[3]=> " + @hoge[3];
+ next;
+ copyarray @fuga[0],@hoge[2],2;
+ mes "true: 3,4,0";
+ mes "fuga[0]=> " + @fuga[0];
+ mes "fuga[1]=> " + @fuga[1];
+ mes "fuga[2]=> " + @fuga[2];
+ next;
+ deletearray @hoge[1],2;
+ mes "true: 1,4,5,0";
+ mes "hoge[0]=> " + @hoge[0];
+ mes "hoge[1]=> " + @hoge[1];
+ mes "hoge[2]=> " + @hoge[2];
+ mes "hoge[3]=> " + @hoge[3];
+
+ close;
+}