summaryrefslogtreecommitdiff
path: root/npc/sample/npc_test_npctimer.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/sample/npc_test_npctimer.txt')
-rw-r--r--npc/sample/npc_test_npctimer.txt33
1 files changed, 33 insertions, 0 deletions
diff --git a/npc/sample/npc_test_npctimer.txt b/npc/sample/npc_test_npctimer.txt
new file mode 100644
index 000000000..f40d36847
--- /dev/null
+++ b/npc/sample/npc_test_npctimer.txt
@@ -0,0 +1,33 @@
+
+prontera.gat,156,183,0 script NPCtimer�e�X�g::npctimerX0000 116,{
+ mes "�^�C�}�[�l" + getnpctimer(0);
+ mes "�^�C�}�[���" + getnpctimer(1,"npctimerX0000");
+ mes "�C�x���g��" + getnpctimer(2);
+ menu "������",L_INIT,"��~",L_STOP,"�ĊJ",L_START,"�ݒ�",L_SET;
+ close;
+L_INIT:
+ initnpctimer;
+ close;
+L_STOP:
+ stopnpctimer;
+ close;
+L_START:
+ startnpctimer;
+ close;
+L_SET:
+ input @temp;
+ setnpctimer @temp;
+ close;
+
+OnTimer1000:
+ announce "1�b�o��",0;
+ end;
+
+OnTimer5000:
+ announce "5�b�o��",0;
+ end;
+
+OnTimer10000:
+ announce "10�b�o��",0;
+ end;
+}