summaryrefslogtreecommitdiff
path: root/doc/sample/npc_test_array.txt
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-05 11:34:32 +0300
committerAndrei Karas <akaras@inbox.ru>2019-01-23 19:48:26 +0300
commitb4a9ffe973b61995c81f2031a42c325d6790cd71 (patch)
treea3eee2d269206a4699c1821388217ae86e07f6bf /doc/sample/npc_test_array.txt
parentf313c660d91110d119953e1a861b4011721c377b (diff)
downloadhercules-b4a9ffe973b61995c81f2031a42c325d6790cd71.tar.gz
hercules-b4a9ffe973b61995c81f2031a42c325d6790cd71.tar.bz2
hercules-b4a9ffe973b61995c81f2031a42c325d6790cd71.tar.xz
hercules-b4a9ffe973b61995c81f2031a42c325d6790cd71.zip
Remove conf dir.
Diffstat (limited to 'doc/sample/npc_test_array.txt')
-rw-r--r--doc/sample/npc_test_array.txt43
1 files changed, 0 insertions, 43 deletions
diff --git a/doc/sample/npc_test_array.txt b/doc/sample/npc_test_array.txt
deleted file mode 100644
index a429ffb93..000000000
--- a/doc/sample/npc_test_array.txt
+++ /dev/null
@@ -1,43 +0,0 @@
-//===== Hercules Script =======================================
-//= Sample: Array Test
-//===== By: ==================================================
-//= Hercules Dev Team
-//===== Current Version: =====================================
-//= 20131225
-//===== Description: =========================================
-//= Demonstrates array commands.
-//============================================================
-
-prontera,164,190,1 script Array Test 4_F_KAFRA6,{
- .@hoge[0] = 1;
- .@hoge[1] = 5;
- mes "Please enter a value for 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;
-}